feat(Actions): Automatically add labels on PRs (#3571)

This commit is contained in:
Kitzunu
2020-10-15 23:13:36 +02:00
committed by GitHub
parent c5df114454
commit 9f93e554e6
3 changed files with 31 additions and 1 deletions

14
.github/label-pr.yml vendored Normal file
View File

@@ -0,0 +1,14 @@
- regExp: ".*\\.sql+$"
labels: ["DB"]
- regExp: ".*\\.(cpp|h)+$"
labels: ["CORE"]
- regExp: "src/server/scripts/(.*).(cpp|h)+$"
labels: ["Script"]
- regExp: ".*\\.md+$"
labels: ["Documentation"]
- regExp: ".*\\.sh+$"
labels: ["Bash"]
- regExp: ".*\\.cmake+$"
labels: ["Cmake"]
- regExp: ".*\\.yml+$"
labels: ["Workflow"]