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
I there a way to use the CHANGELOG file content to set the tag description?
once we run the command commit-and-tag-version, it get the commits and create/update the changelog.md file, create a new tag commit and provide you the command to push those changes.
what im i looking for is:
same commits that the cli took to update the changelog.md are used to set the tag description
instead of:
chore(release): x.x.x
then the tag release has description from the changelog like:
x.x.x (date)
Features:
feat1 ...
feat2 ...
Fixes:
Fix1 ...
Fix2 ...
...
The text was updated successfully, but these errors were encountered:
Not at this time, no. There is an undocumented option, releaseCommitMessageFormat (which should probably be documented) - but this only supports {{currentTag}} and constant strings.
You could hack something together by parsing the changelog out of --dry-run combined with --releaseCommitMessageFormat. I'd happily accept a PR that extends format-commit-message.js with more options, too.
Hello there,
I there a way to use the CHANGELOG file content to set the tag description?
once we run the command
commit-and-tag-version
, it get the commits and create/update the changelog.md file, create a new tag commit and provide you the command to push those changes.what im i looking for is:
same commits that the cli took to update the changelog.md are used to set the tag description
instead of:
chore(release): x.x.x
then the tag release has description from the changelog like:
x.x.x (date)
Features:
Fixes:
...
The text was updated successfully, but these errors were encountered: