Replies: 1 comment 5 replies
-
Hello! Good question, my recommended flow is the following:
[git]
commit_parsers = [
{ message = "^chore\\(release\\):", skip = true },
]
With this approach you won't end up with release commits appearing in the changelog. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
So I'm a bit confused about how this would work.
I have an NPM package, and I make a new feature. I commit the work to my repo, and the publish to NPM.
I want the changelog, created by git cliff, to be included in the SDK.
But it seems like a chicken and egg kinda situation; I have to make the commits first to create the changelog, but by doing so, that means I have to do another commit to add the changelog.
Whats the correct order of doing things so I'm not adding additional, unneeded commits?
Beta Was this translation helpful? Give feedback.
All reactions