draft.yml 429 B

123456789101112131415161718192021
  1. name: Release Drafter
  2. on:
  3. push:
  4. branches:
  5. - main
  6. pull_request:
  7. # Only following types are handled by the action, but one can default to all as well
  8. types: [opened, reopened, synchronize]
  9. permissions:
  10. contents: read
  11. jobs:
  12. update_release_draft:
  13. runs-on: ubuntu-latest
  14. steps:
  15. - uses: release-drafter/release-drafter@master
  16. env:
  17. GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}