Skip to content

Commit

Permalink
Add label workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Oct 14, 2024
1 parent 7137af2 commit 6ea8a85
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/pull_request_label.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# This workflow applies labels to pull requests based on the paths that are
# modified in the pull request.
#
# Edit `.github/labeler.yml` to configure labels. For more information, see
# https://github.com/actions/labeler.

name: Pull Request Labeler
permissions: read-all

on:
pull_request_target

jobs:
label:
permissions:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
sync-labels: true

0 comments on commit 6ea8a85

Please sign in to comment.