summaryrefslogtreecommitdiff
path: root/.github/workflows/labeler.yml
blob: 99db967b383bea61c19624ecc8b5eddb97a50c0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
name: "Pull Request Labeler"
on:
  pull_request_target:
    types: [opened, synchronize, reopened, edited]

jobs:
  pr-labeler:
    runs-on: ubuntu-latest
    steps:
    - name: Label the PR
      uses: gerrymanoim/pr-prefix-labeler@v3
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}