Skip to content

v1.8.0

Choose a tag to compare

@github-actions github-actions released this 19 Apr 14:07
· 12 commits to main since this release
9c8306e

Description

  • Adds UsePRBodyAsReleaseNotes and UsePRTitleAsReleaseName inputs. 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.
  • 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) to false.

📋 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.