-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (37 loc) · 1.33 KB
/
pr.yml
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
on:
pull_request_target:
types: [ opened ]
jobs:
pr-bot:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
with:
script: |
const pr = context.payload.pull_request;
const body = pr.body;
let labels = [];
const isChecked = /-\s*\[\s*[x|X]\s*\]\s*/;
if (RegExp(isChecked.source + "Bug fix \\(non-breaking change which fixes an issue\\)").test(body)) {
labels.push("bug");
console.log("PR type: bug fix.");
}
if(RegExp(isChecked.source + "New Template").test(body)) {
labels.push("enhancement");
console.log("PR type: enhancement.");
}
if(RegExp(isChecked.source + "Template Enhancement").test(body)) {
labels.push("breaking change");
console.log("PR type: breaking change.");
}
if(!pr.draft) {
labels.push("PR: needs review");
}
if(labels.length != 0) {
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: labels
})
}