We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 116c2b3 + d7aa03e commit 1f31d1fCopy full SHA for 1f31d1f
.github/labeler.yml
@@ -0,0 +1,11 @@
1
+# Add "enhancement" label to any PR that contains files in the src
2
+# directory (excluding the markdown pages directory.
3
+enhancement:
4
+ - any: ['src/**/*', '!src/markdown-pages/**/*']
5
+
6
+# Add "documentation" label to any PR that contains files in the
7
+# markdown-pages directory.
8
+documentation:
9
+ - any: ['src/markdown-pages/**/*']
10
11
.github/workflows/label.yml
@@ -0,0 +1,10 @@
+name: "Pull Request Labeler"
+on: [pull_request]
+jobs:
+ label:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/labeler@v2
+ with:
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"
0 commit comments