mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-02-17 16:00:32 -05:00
80 lines
2.2 KiB
JavaScript
80 lines
2.2 KiB
JavaScript
/*
|
|
This script was originally created to iterate over all open
|
|
PRs to label and comment on specific PR errors (i.e. guide related
|
|
filename syntax and front-matter).
|
|
|
|
Since the first run which covered over 10,000+ PRs, it is currently
|
|
ran every couple of days for just the most recent PRs.
|
|
|
|
To run the script for a specific range (i.e. label and comment on
|
|
guide errors), run `node sweeper.js range startingPrNumber endingPrNumber`
|
|
*/
|
|
|
|
const { owner, repo, octokitConfig, octokitAuth } = require('./constants');
|
|
|
|
const octokit = require('@octokit/rest')(octokitConfig);
|
|
|
|
const { getPRs, getUserInput } = require('./get-prs');
|
|
const { guideFolderChecks } = require('./validation');
|
|
const { ProcessingLog, rateLimiter } = require('./utils');
|
|
const { labeler } = require('./pr-tasks');
|
|
|
|
octokit.authenticate(octokitAuth);
|
|
|
|
const log = new ProcessingLog('sweeper');
|
|
|
|
log.start();
|
|
console.log('Sweeper started...');
|
|
(async() => {
|
|
const { totalPRs, firstPR, lastPR } = await getUserInput();
|
|
const prPropsToGet = ['number', 'labels', 'user'];
|
|
const { openPRs } = await getPRs(totalPRs, firstPR, lastPR, prPropsToGet);
|
|
|
|
console.log('Processing PRs...');
|
|
for (let count in openPRs) {
|
|
if (openPRs.length) {
|
|
let {
|
|
number,
|
|
labels: currentLabels,
|
|
user: { login: username }
|
|
} = openPRs[count];
|
|
|
|
const { data: prFiles } = await octokit.pullRequests.listFiles({
|
|
owner,
|
|
repo,
|
|
number
|
|
});
|
|
|
|
const guideFolderErrorsComment = await guideFolderChecks(
|
|
number,
|
|
prFiles,
|
|
username
|
|
);
|
|
|
|
const commentLogVal = guideFolderErrorsComment
|
|
? guideFolderErrorsComment
|
|
: 'none';
|
|
|
|
const labelsAdded = await labeler(
|
|
number,
|
|
prFiles,
|
|
currentLabels,
|
|
guideFolderErrorsComment
|
|
);
|
|
|
|
const labelLogVal = labelsAdded.length ? labelsAdded : 'none added';
|
|
|
|
log.add(number, { number, comment: commentLogVal, labels: labelLogVal });
|
|
await rateLimiter(+process.env.RATELIMIT_INTERVAL || 1500);
|
|
}
|
|
}
|
|
})()
|
|
.then(() => {
|
|
log.finish();
|
|
console.log('Sweeper complete');
|
|
})
|
|
.catch(err => {
|
|
log.finish();
|
|
console.log(err);
|
|
});
|