Skip to content

Commit 6ea8a85

Browse files
committed
Add label workflow
1 parent 7137af2 commit 6ea8a85

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)