summaryrefslogtreecommitdiff
path: root/.github/workflows/label.yml
blob: 12fc3293cb959541b67bcbc3f7e238651e46e07a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: Labeler
on:
  pull_request_target:
    types: [ opened ]
    branches: [ main ]

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