v1.8.0
Description
- Adds
UsePRBodyAsReleaseNotesandUsePRTitleAsReleaseNameinputs. This allow you to configure the action to copy the PR body into the release notes and/or use the PR title as the release name.- Fixes #72
- Changes the default behavior of the action from using the built in release note generation using the .github/release.yml instructions to use the PR body for release notes (
UsePRBodyAsReleaseNotes = true). The release title remains as before with using the semantic‑version tag. You can opt out of this new functionality by setting the input(s) tofalse.
📋 How to use the new options
steps:
- uses: PSModule/Auto-Release@vNext
with:
UsePRBodyAsReleaseNotes: true # default is true
UsePRTitleAsReleaseName: false # default is false⏭️ Migration guide
Current adopters that relied on the previous default (generated changelog as release notes) should explicitly set UsePRBodyAsReleaseNotes: false to keep former behavior.