update-pr-to-master.yml 610 B

1234567891011121314151617181920212223242526
  1. name: Update PR to master
  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 }}
  18. add-comment-history:
  19. runs-on: ubuntu-latest
  20. steps:
  21. - uses: technote-space/pr-commit-body-action@v1