From e4e829bc460a6b9c43169c1f4cfb581f3d862baa Mon Sep 17 00:00:00 2001 From: Alexander Bell-Towne Date: Wed, 11 Mar 2020 13:58:07 -0400 Subject: [PATCH] Remove GITHUB_TOKEN from token.js This was causing an error with generic CI tokens, this should only use a project specific token, closes #93 --- src/token.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/token.js b/src/token.js index 5db0ce36..6a99dcde 100644 --- a/src/token.js +++ b/src/token.js @@ -1,7 +1,5 @@ const token = process.env.bundlesize_github_token || - process.env.BUNDLESIZE_GITHUB_TOKEN || - process.env.github_token || - process.env.GITHUB_TOKEN + process.env.BUNDLESIZE_GITHUB_TOKEN module.exports = token