Releases/v0.12.0 #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Add Release Notes to a Release PR | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- ready_for_review | |
# Also only if the branch is 'releases/v**' but you can't specify multiple event filters | |
jobs: | |
changelog: | |
name: Release Notes | |
runs-on: ubuntu-latest | |
if: startsWith(github.head_ref, 'releases/v') | |
steps: | |
- uses: daytime-em/changelog-on-pr@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
labels: breaking,updates,fixes,deprecated |