pr-labeler.yml 363 B

1234567891011121314
  1. name: PR Labeler
  2. on:
  3. pull_request:
  4. types: [opened, edited, closed]
  5. jobs:
  6. pr-labeler:
  7. runs-on: ubuntu-latest
  8. steps:
  9. - uses: TimonVS/pr-labeler-action@v3
  10. with:
  11. configuration-path: .github/pr-labeler.yml # optional, .github/pr-labeler.yml is the default value
  12. env:
  13. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}