From 1f09007b6369aed07dc5074b571dd7779d4b48ed Mon Sep 17 00:00:00 2001 From: mrugesh mohapatra <1884376+raisedadead@users.noreply.github.com> Date: Sun, 11 Nov 2018 17:50:31 -0800 Subject: [PATCH] fix: removed console.log Co-Authored-By: RandellDawson <5313213+RandellDawson@users.noreply.github.com> --- labelOpenPrs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labelOpenPrs.js b/labelOpenPrs.js index 1ef195c71d..2cfc6ba87f 100644 --- a/labelOpenPrs.js +++ b/labelOpenPrs.js @@ -11,7 +11,7 @@ const { addLabels } = require('./addLabels'); const { guideFolderChecks } = require('./guideFolderChecks'); const { addComment } = require('./addComment'); -console.log(octokit.authenticate(octokitAuth)); +octokit.authenticate(octokitAuth); const labelsAdder = (number, existingLabels, labelsToAdd, log) => { const newLabels = Object.keys(labelsToAdd).filter(label => !existingLabels.includes(label));