summaryrefslogtreecommitdiff
path: root/.github/workflows/label.yaml
blob: 218327ef470ef56afa0f436d4c7ec29044734f1d (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@v6
        with:
          configuration-path: .github/labeler.yaml
          repo-token: "${{ secrets.GITHUB_TOKEN }}"