-
-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathhandle-installation.js
99 lines (86 loc) · 2.15 KB
/
handle-installation.js
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
module.exports = handleInstallation;
const pluralize = require("pluralize");
const getConfig = require("./app-config");
const resetRepositories = require("./common/reset-repositories");
/**
* On install or accepted permissions: update all PRs for installs
* On uninstall: just log
*
* @param {import('probot').Probot} app
* @param {import('probot').Context} context
*/
async function handleInstallation(app, context) {
const {
action,
repositories,
repositories_added: added,
repositories_removed: removed,
installation: { account, repository_selection: selection },
} = context.payload;
const log = context.log.child({
name: getConfig().name,
event: context.name,
action,
account: account.id,
accountType: account.type.toLowerCase(),
accountName: account.login,
selection: selection,
});
if (action === "deleted") {
log.info(`😭 ${account.type} ${account.login} uninstalled`);
return;
}
if (action === "removed") {
log.info(
`➖ ${account.type} ${account.login} removed ${pluralize(
"repository",
removed.length,
true,
)}`,
);
return;
}
if (action === "created") {
log.info(
`🤗 ${account.type} ${account.login} installed on ${pluralize(
"repository",
repositories.length,
true,
)}`,
);
return resetRepositories({
app,
context,
account,
repositories,
});
}
if (action === "added") {
log.info(
`➕ ${account.type} ${account.login} added ${pluralize(
"repository",
added.length,
true,
)}`,
);
return resetRepositories({
app,
context,
account,
repositories: added,
});
}
if (action === "new_permissions_accepted") {
log.info(`👌 ${account.type} ${account.login} accepted new permissions`);
return resetRepositories({
app,
context,
account,
repositories: await context.octokit.paginate(
context.octokit.apps.listReposAccessibleToInstallation,
{ per_page: 100 },
),
});
}
log.info(`ℹ️ installation.${action} by ${account.login}`);
}