We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Github allows for automatically generated changelogs on a release: https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#configuring-automatically-generated-release-notes
This is available through their CLI gh tool as --generate-release-notes. Looking at this repo a bit it seems like it uses the API so that has an option too: https://docs.github.com/en/rest/releases/releases#generate-release-notes-content-for-a-release
gh
--generate-release-notes
It would be awesome if this library had something similar, something maybe like
githubRelease { repo("repo") tagName(semver.versionTagName) body(autoGenerated()) // <-- something like this }
I might be able to help with this contribution depending on if it's something that would be possible to do 👍
The text was updated successfully, but these errors were encountered:
Add support for github generated release notes, fixes BreadMoirai#51
e2cf2ae
I took a stab at this in #52 👀
The implementation changed a bit from what I first imagined since github natively supports this on the POST call.
githubRelease { generateReleaseNotes(true) }
Sorry, something went wrong.
Merge pull request #52 from ahatzz11/feature/add-github-generated-rel…
07940c0
…ease-notes Add support for github generated release notes, closes #51
Successfully merging a pull request may close this issue.
Github allows for automatically generated changelogs on a release: https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#configuring-automatically-generated-release-notes
This is available through their CLI
gh
tool as--generate-release-notes
. Looking at this repo a bit it seems like it uses the API so that has an option too: https://docs.github.com/en/rest/releases/releases#generate-release-notes-content-for-a-releaseIt would be awesome if this library had something similar, something maybe like
I might be able to help with this contribution depending on if it's something that would be possible to do 👍
The text was updated successfully, but these errors were encountered: