You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there! Thanks for creating and maintaining this.
I recently came across this github action: create-gh-release-action, which parses the CHANGELOG.md file and uses that to create a body for the release.
Might be cool this action supports a similar thing.
- name: Get Changelog Entryid: changelog_readeruses: mindsers/changelog-reader-action@v2with:
validation_depth: 10version: ${{ steps.tag_name.outputs.current_version }}path: ./CHANGELOG.md
- name: Create/update releaseuses: ncipollo/release-action@v1with:
# This pulls from the "Get Changelog Entry" step above, referencing it's ID to get its outputs object.# See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-stepstag: ${{ steps.changelog_reader.outputs.version }}name: Release ${{ steps.changelog_reader.outputs.version }}body: ${{ steps.changelog_reader.outputs.changes }}prerelease: ${{ steps.changelog_reader.outputs.status == 'prereleased' }}draft: ${{ steps.changelog_reader.outputs.status == 'unreleased' }}allowUpdates: truetoken: ${{ secrets.GITHUB_TOKEN }}
But it would be even better if this was natively supported by this action.
The text was updated successfully, but these errors were encountered:
Hi there! Thanks for creating and maintaining this.
I recently came across this github action: create-gh-release-action, which parses the
CHANGELOG.md
file and uses that to create a body for the release.Might be cool this action supports a similar thing.
Users can also manually set it up using changelog-reader:
But it would be even better if this was natively supported by this action.
The text was updated successfully, but these errors were encountered: