-
Notifications
You must be signed in to change notification settings - Fork 38
44 lines (39 loc) · 1.35 KB
/
auto-label.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
name: Auto Label Issue and PR
on:
issues:
types: [opened, reopened, edited]
pull_request:
types: [opened, reopened, edited]
jobs:
label_issue_or_pr:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- name: Label Issue or PR
uses: actions/github-script@v6
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const item = context.payload.issue || context.payload.pull_request;
const itemBody = item.body ? item.body.toLowerCase() : '';
const itemTitle = item.title.toLowerCase();
// Add gssoc label to all issues and PRs
await github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: item.number,
labels: ['gssoc-ext','level1']
});
const addLabel = async (label) => {
await github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: item.number,
labels: [label]
});
};
if (itemBody.includes('documentation') || itemTitle.includes('doc') || itemBody.includes('readme')) {
await addLabel('level1');
}