label.yml 383 B

12345678910111213141516
  1. # Automatically labels PRs based on the configuration file
  2. # you are probably looking for 👉 `.github/labeler.yml`
  3. name: Label PRs
  4. on:
  5. - pull_request_target
  6. jobs:
  7. triage:
  8. runs-on: ubuntu-latest
  9. if: github.repository_owner == 'withastro'
  10. steps:
  11. - uses: actions/labeler@v4
  12. with:
  13. repo-token: "${{ secrets.GITHUB_TOKEN }}"
  14. sync-labels: true