-
-
Notifications
You must be signed in to change notification settings - Fork 281
generate changelog for a single tag #399
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
Do you mean you want to get the changelog between |
Yes |
This could be interesting. This way you could do: cz changelog --version $(cz version --project) |
I’m okay with that, sounds good.
…------------------ Original ------------------
From: Santiago ***@***.***>
Date: Fri,Jul 9,2021 1:59 AM
To: commitizen-tools/commitizen ***@***.***>
Cc: Trim21 ***@***.***>, Author ***@***.***>
Subject: Re: [commitizen-tools/commitizen] generate changelog for a single tag (#399)
|
git-chglog has a syntax like Hope this information could help #225 Even through I don't like this syntax |
Uh oh!
There was an error while loading. Please reload this page.
Description
Hi everyone, thanks for your work.
I'd like to generate my changelog with commitzen in ci, and store them in github releases instead of a whole changelog.md in my source files.
But It looks impossible now, I can only generate the full changelog, or split them manually from a specific tag.
Possible Solution
add a filter arguments to filter single tag like:
additional information
There already has been a
--start-rev
argument that may help with this. But I think it would be better to have a way select to just a single tag for ci or other things to simplify the workflow.This is inspired by https://github.com/git-chglog/git-chglog#cli-usag
Now I'm doing it with
git-chglog "$TAG" > chglog.md
andgh release create "$TAG" -F chglog.md
The text was updated successfully, but these errors were encountered: