We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f51ccd6 commit cba5e54Copy full SHA for cba5e54
1 file changed
auto-label.yml
@@ -1 +1,21 @@
1
+name: Auto Label
2
3
+on:
4
+ pull_request:
5
+ types: [opened, synchronize, reopened]
6
+
7
+permissions:
8
+ contents: read
9
+ pull-requests: write
10
11
+jobs:
12
+ label:
13
+ name: Apply labels
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Label PR by changed files
17
+ uses: actions/labeler@v5
18
+ with:
19
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
20
+ configuration-path: labeler.yml
21
+ sync-labels: true
0 commit comments