summaryrefslogtreecommitdiff
path: root/.github/workflows/label.yaml
blob: 6e41d8aa2d808e5edd3e99bc67067ba5353b7b69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: Pull Request Labeler
on:
  - pull_request_target

jobs:
  triage:
    permissions:
      contents: read
      pull-requests: write
    runs-on: ubuntu-latest
    steps:
      - uses: actions/labeler@v4
        with:
          configuration-path: .github/labeler.yaml
          repo-token: "${{ secrets.GITHUB_TOKEN }}"