release-drafter.yml 539 B

12345678910111213141516171819202122
  1. # Automates creation of Release Drafts using Release Drafter
  2. # More Info: https://github.com/jenkinsci/.github/blob/master/.github/release-drafter.adoc
  3. ---
  4. name: Release Drafter
  5. on:
  6. push:
  7. branches:
  8. - master
  9. - main
  10. permissions:
  11. contents: write
  12. jobs:
  13. update_release_draft:
  14. runs-on: ubuntu-latest
  15. steps:
  16. # Drafts your next Release notes as Pull Requests are merged into the default branch
  17. - uses: release-drafter/release-drafter@v7
  18. env:
  19. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}