We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e6f03d commit bf54f25Copy full SHA for bf54f25
.github/labeler.yaml
@@ -0,0 +1,15 @@
1
+ci:
2
+- '.circleci/**/*'
3
+- '.github/**/*'
4
+minecraft 1.12.2:
5
+# Looks like Labeler doesn't match directories starting on '.' by default.
6
+# Include at least the root-level ones.
7
+- '.*'
8
+- '.*/**/*'
9
+- '**/*'
10
+mod magic doorknob:
11
+- 'MagicDoorknob/**/*'
12
+- 'build.gradle'
13
+mod magic mirror:
14
+- 'MagicMirror/**/*'
15
.github/workflows/labeler.yaml
@@ -0,0 +1,14 @@
+name: Pull Request Labeler
+on:
+ pull_request:
+ branches:
+ - 1.12.2
+
+jobs:
+ triage:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/labeler@v3-preview
+ with:
+ configuration-path: .github/labeler.yaml
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"
0 commit comments