-
Notifications
You must be signed in to change notification settings - Fork 42
Generate Github release page #3
New issue
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
Comments
@lyz-code, I think you can achieve this by running shell getting the diff from Something like: last_tag=0.0.2;
created_tag=0.0.3;
release_note=$(git diff $last_tag $created_tag> CHANGELOG.md | grep '^+[^++]' | cut -c2-)
git tag $created_tag $created_tag^{} -f -m "$release_note"
|
After merging this PR: commitizen-tools/commitizen#359 I'll add the flag to this action, I think should make it easier to create a Release |
Thanks @woile that makes things much easier |
https://github.com/commitizen-tools/commitizen-action/blob/master/.github/workflows/bumpversion.yaml It's working now, I'm closing this issue |
Uh oh!
There was an error while loading. Please reload this page.
Description
The Github Action currently generates release only with the tag number information but nothing else.
Possible Solution
The Github Action could generate a detailed Github release page description with the contents of the changelog of that release through the release api endpoint
Additional context
Compare commitizen releases with python-semantic-release ones.
Some users use the Watch releases to get updated on the evolution of the different software, so it's a nice way to share with your users your progress.
Thanks!
The text was updated successfully, but these errors were encountered: