forked from OctoPrint/plugins.octoprint.org
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (33 loc) · 1.09 KB
/
issue-labeler.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
name: "Issue Labeler"
on:
issues:
types: [opened, edited]
jobs:
apply-label:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
let labels = [];
if (context.payload.issue.title.match(/\[abandoned plugin\]/i)) {
labels.push('abandoned plugin');
labels.push('needs review');
}
if (context.payload.issue.title.match(/\[suspicious plugin activity\]/i)) {
labels.push('suspicious plugin activity');
labels.push('needs review');
}
if (context.payload.issue.title.match(/\[listing error\]/i)) {
labels.push('listing error');
labels.push('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
})
}