-
Notifications
You must be signed in to change notification settings - Fork 2
41 lines (36 loc) · 1.24 KB
/
auto-label-issues.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
name: Auto-label issues based on severity
on:
issues:
types: [opened, edited]
jobs:
label-issues:
runs-on: ubuntu-latest
steps:
- name: Label issues based on severity
uses: actions/github-script@v6
with:
script: |
const issueBody = context.payload.issue.body;
const severityRegex = /Severity \*\n(?:.*\n)*?\* (.*?)\n/g;
const severityMatch = severityRegex.exec(issueBody);
const labels = [];
if (severityMatch) {
const severity = severityMatch[1].toLowerCase();
if (severity.includes("critical")) {
labels.push('Severity: Critical', 'blocker');
} else if (severity.includes("high")) {
labels.push('Severity: High');
} else if (severity.includes("medium")) {
labels.push('Severity: Medium');
} else if (severity.includes("low")) {
labels.push('Severity: Low');
}
}
if (labels.length > 0) {
await github.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.payload.issue.number,
labels: labels
});
}