auto-labeling.yml 492 B

123456789101112131415161718192021
  1. name: Auto Labeling
  2. on:
  3. pull_request:
  4. branches:
  5. - master
  6. # Only following types are handled by the action, but one can default to all as well
  7. types: [opened, reopened, synchronize]
  8. jobs:
  9. # Refs: https://github.com/release-drafter/release-drafter
  10. auto-labeling:
  11. runs-on: ubuntu-latest
  12. steps:
  13. - uses: release-drafter/release-drafter@v5
  14. with:
  15. disable-releaser: true
  16. env:
  17. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}