forked from opentibiabr/otclient
-
Notifications
You must be signed in to change notification settings - Fork 0
26 lines (26 loc) · 766 Bytes
/
issue.yml
File metadata and controls
26 lines (26 loc) · 766 Bytes
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
---
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: Datapack":["[X] Datapack"],
"Area: Source":["[X] Source"],
"Area: Map":["[X] Map"],
"Type: Enhancement":["Enhancement"],
"Type: Missing Content":["Missing Content"]
}'
default-labels: '["Status: Pending Test"]'