forked from microsoft/TypeScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequest-pr-review.ts
73 lines (64 loc) · 2.28 KB
/
request-pr-review.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/// <reference lib="esnext.asynciterable" />
/// <reference lib="es2015.promise" />
import octokit = require("@octokit/rest");
import Octokit = octokit.Octokit;
import minimist = require("minimist");
const options = minimist(process.argv.slice(2), {
boolean: ["help"],
string: ["token", "pull", "reviewer", "owner", "repo"],
alias: {
pr: "pull",
h: "help",
["?"]: "help"
},
default: {
token: process.env.GH_TOKEN,
pull: process.env.GH_PULL_NUMBER,
reviewer: process.env.REQUESTED_REVIEWER,
owner: "microsoft",
repo: "TypeScript"
}
});
if (options.help) {
printHelpAndExit(0);
}
if (!options.token || !options.pull || !options.reviewer || !options.owner || !options.repo) {
console.error("Invalid arguments");
printHelpAndExit(-1);
}
const pull_number = +options.pull;
if (!isFinite(pull_number)) {
console.error("Invalid arguments");
printHelpAndExit(-2);
}
const reviewers = Array.isArray(options.reviewer) ? options.reviewer : [options.reviewer];
main().catch(console.error);
async function main() {
const gh = new Octokit({ auth: options.token });
const response = await gh.pulls.requestReviewers({
owner: options.owner,
repo: options.repo,
pull_number,
reviewers,
});
if (response.status === 201) {
console.log(`Added ${reviewers.join(", ")} to ${response.data.url}`);
}
else {
console.log(`Failed to add ${reviewers.join(", ")} to the pull request.`);
}
}
function printHelpAndExit(exitCode: number) {
console.log(`
usage: request-pr-review.js [options]
options:
--token <token> Your GitHub auth token. Uses %GH_TOKEN% if present.
--owner <owner> The GH user or organization for the repo (default: 'microsoft').
--repo <repo> The GH repo for the pull request (default: 'TypeScript').
--pull <pr_number> The pull request number. Uses %GH_PULL_NUMBER% if present.
--reviewer <reviewer> The GH username of reviewer to add. May be specified multiple times.
Uses %REQUESTED_REVIEWER% if present.
-h --help Prints this help message.
`);
return process.exit(exitCode);
}