We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3972e08 commit c67f480Copy full SHA for c67f480
.github/labeler.yml
@@ -0,0 +1,2 @@
1
+documentation:
2
+ - documentation/**/*
.github/workflows/label.yml
@@ -0,0 +1,21 @@
+# This workflow will triage pull requests and apply a label based on the
+# paths that are modified in the pull request.
3
+#
4
+# To use this workflow, you will need to set up a .github/labeler.yml
5
+# file with configuration. For more information, see:
6
+# https://github.com/actions/labeler
7
+
8
+name: Labeler
9
+on: [pull_request_target]
10
11
+jobs:
12
+ label:
13
+ runs-on: ubuntu-latest
14
+ permissions:
15
+ contents: read
16
+ pull-requests: write
17
18
+ steps:
19
+ - uses: actions/labeler@v2
20
+ with:
21
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"
0 commit comments