From a0f982432e65c1e29a06b0aa4030919d2dcd98f2 Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Wed, 17 Apr 2019 09:38:00 +0100 Subject: [PATCH] Fix syntax error (variable re-assignment) --- integrations/github.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/github.js b/integrations/github.js index d05a89e..c9edcf9 100644 --- a/integrations/github.js +++ b/integrations/github.js @@ -13,7 +13,7 @@ module.exports = async function(robot, kredits) { robot.logger.debug('[hubot-kredits] Loading GitHub integration...'); - const repoBlackList = []; + let repoBlackList = []; if (process.env.KREDITS_GITHUB_REPO_BLACKLIST) { repoBlackList = process.env.KREDITS_GITHUB_REPO_BLACKLIST.split(','); robot.logger.debug('[hubot-kredits] Ignoring GitHub actions from ', util.inspect(repoBlackList));