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 7137af2 commit 6ea8a85Copy full SHA for 6ea8a85
.github/workflows/pull_request_label.yaml
@@ -0,0 +1,22 @@
1
+# This workflow applies labels to pull requests based on the paths that are
2
+# modified in the pull request.
3
+#
4
+# Edit `.github/labeler.yml` to configure labels. For more information, see
5
+# https://github.com/actions/labeler.
6
+
7
+name: Pull Request Labeler
8
+permissions: read-all
9
10
+on:
11
+ pull_request_target
12
13
+jobs:
14
+ label:
15
+ permissions:
16
+ pull-requests: write
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9
20
+ with:
21
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"
22
+ sync-labels: true
0 commit comments