-
-
Notifications
You must be signed in to change notification settings - Fork 648
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Renato Foot <[email protected]>
- Loading branch information
Renato Foot
committed
Apr 12, 2022
1 parent
87edf62
commit 76fd4f6
Showing
4 changed files
with
43 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
20 changes: 15 additions & 5 deletions
20
.github/ISSUE_TEMPLATE/content.yaml → .github/ISSUE_TEMPLATE/request.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
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"]' |