From 5e600f00cc84300341324988228133a295b4ae1a Mon Sep 17 00:00:00 2001 From: Jan Kassens Date: Fri, 27 Jan 2023 12:37:40 -0500 Subject: [PATCH] Update danger.js token --- scripts/tasks/danger.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/scripts/tasks/danger.js b/scripts/tasks/danger.js index ae79ac82e3279..8302929c20fc9 100644 --- a/scripts/tasks/danger.js +++ b/scripts/tasks/danger.js @@ -12,8 +12,6 @@ const spawn = require('child_process').spawn; const extension = process.platform === 'win32' ? '.cmd' : ''; -// sizebot public_repo token (this is publicly visible on purpose) -const token = '0a7d5c3cad9a6dbec2d9' + '9a5222cf49062a4c1ef7'; spawn( path.join('node_modules', '.bin', 'danger-ci' + extension), [ @@ -23,10 +21,6 @@ spawn( { // Allow colors to pass through stdio: 'inherit', - env: { - ...process.env, - DANGER_GITHUB_API_TOKEN: token, - }, } ).on('close', function(code) { if (code !== 0) {