forked from eu/join
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.ts
71 lines (62 loc) · 1.99 KB
/
action.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
import { debug, getInput, setFailed, setOutput } from "@actions/core";
import { getOctokit } from "@actions/github";
const token =
getInput("token") || process.env.GH_PAT || process.env.GITHUB_TOKEN;
export const run = async () => {
if (!token) throw new Error("GitHub token not found");
const octokit = getOctokit(token);
const owner = (process.env.GITHUB_REPOSITORY || "").split("/")[0];
const repo = (process.env.GITHUB_REPOSITORY || "").split("/")[1];
debug(`Got repo ${owner}/${repo}`);
const invitations = await octokit.paginate(
octokit.rest.orgs.listPendingInvitations,
{ org: owner }
);
const issues = await octokit.paginate(octokit.rest.issues.listForRepo, {
owner,
repo,
state: "open",
});
for (const issue of issues) {
if (issue.title.toLowerCase().trim() !== "join") {
debug(`${issue.number}: Skipped because title is not "Join"`);
continue;
}
if (!issue.user) {
debug(`${issue.number}: Skipped because no user found`);
continue;
}
debug(`${issue.number}: Processing`);
if (invitations.find((i) => i.login === (issue.user || {}).login)) {
debug(`${issue.number}: Skipped because invitation already sent`);
continue;
}
await octokit.rest.orgs.createInvitation({
org: owner,
invitee_id: issue.user.id,
});
debug(`${issue.number}: Sent invitation`);
await octokit.rest.issues.createComment({
owner,
repo,
issue_number: issue.number,
body: `✅🇪🇺 You should receive an invitation to join @eu soon. Welcome!`,
});
debug(`${issue.number}: Added welcome comment`);
await octokit.rest.issues.update({
owner,
repo,
issue_number: issue.number,
state: "closed",
});
debug(`${issue.number}: Closed`);
}
setOutput("issues-count", issues.length);
setOutput("invitations-count", invitations.length);
};
run()
.then(() => {})
.catch((error) => {
console.error("ERROR", error);
setFailed(error.message);
});