-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
43 lines (34 loc) · 1.56 KB
/
index.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
const core = require('@actions/core');
const github = require('@actions/github');
async function run() {
try {
const context = github.context;
const allowedEvents = ['pull_request', 'pull_request_target'];
const isNotAllowedEvent = allowedEvents.indexOf(context.eventName) === -1;
if (isNotAllowedEvent) {
console.log(`Event "${context.eventName}", skipping. This action only works with the following events: ${allowedEvents.join(', ')}.`);
return;
}
const headRepoFullName = context.payload.pull_request.head.repo.full_name;
const baseRepoFullName = context.payload.repository.full_name;
const isFork = headRepoFullName !== baseRepoFullName;
if (!isFork) {
console.log(`Pull request is not from a fork, skipping.`);
return;
}
const safeToTestLabelName = core.getInput('label');
// Check if pull request has the "safe-to-test" label
const labels = context.payload.pull_request.labels;
const hasSafeToTestLabel = labels.find(label => label.name === safeToTestLabelName);
if (hasSafeToTestLabel) {
console.log(`Pull request have the "safe-to-test" label, skipping.`);
return;
}
core.setFailed(`Pull request does not have the "safe-to-test" label. Code owners must add the "safe-to-test" label to the pull request before it can be tested.`);
} catch (error) {
core.setFailed(error.message);
}
}
// Export is only used for testing
module.exports = run;
run();