-
Notifications
You must be signed in to change notification settings - Fork 48
29 lines (29 loc) · 942 Bytes
/
issue.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
name: Issue - Labeling
on:
workflow_dispatch:
issues:
types: ['opened']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: Renato66/auto-label@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
ignore-comments: true
labels-synonyms: '{
"Priority: Low":["Low"],
"Priority: Medium":["Medium"],
"Priority: High":["High"],
"Priority: Critical":["Critical"],
"Area: Admin":["[X] Admin"],
"Area: Assets":["[X] Assets"],
"Area: Install":["[X] Install"],
"Area: Plugins":["[X] Plugins"],
"Area: System":["[X] System"],
"Area: Templates":["[X] Templates"],
"Area: Tools":["[X] Tools"],
"Type: Enhancement":["Enhancement"],
"Type: Missing Content":["Missing Content"]
}'
default-labels: '["Status: Pending Test"]'