diff --git a/one-off-scripts/addTestLocallyLabel.js b/one-off-scripts/addTestLocallyLabel.js index 781e6d6e1b..0ffb76844e 100644 --- a/one-off-scripts/addTestLocallyLabel.js +++ b/one-off-scripts/addTestLocallyLabel.js @@ -1,3 +1,9 @@ +/* +This is a one-off script to run on all open PRs to add the +"status: need to test locally" label to any PR with an existing "scope: curriculum" +label on it. +*/ + require('dotenv').config({ path: '../.env' }); const { owner, repo, octokitConfig, octokitAuth } = require('../constants'); diff --git a/one-off-scripts/findFailures.js b/one-off-scripts/findFailures.js index e54b8c3969..566a666a93 100644 --- a/one-off-scripts/findFailures.js +++ b/one-off-scripts/findFailures.js @@ -1,3 +1,8 @@ +/* +This is a one-off script to find all open PRs which have one of the console.error +descriptions in the failuresToFind.json file. +*/ + require('dotenv').config({ path: '../.env' }); const Travis = require('travis-ci');