File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Configuration for .github/workflows/pull_request_label.yml.
2
+
3
+ ' type-infra ' :
4
+ - changed-files :
5
+ - any-glob-to-any-file : ' .github/**'
6
+
7
+ ' package:native_synchronization ' :
8
+ - changed-files :
9
+ - any-glob-to-any-file : ' pkgs/native_synchronization/**'
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments