feat: added descriptions to one-off scripts

This commit is contained in:
Randell Dawson
2018-11-20 17:40:08 -08:00
committed by mrugesh mohapatra
parent ae7b1eba37
commit 3acba8cb61
2 changed files with 11 additions and 0 deletions

View File

@ -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');

View File

@ -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');