Replies: 2 comments 2 replies
-
(note: I've force pushed a rewritten commit so that git-cliff behaves nicely, so the repro instructions likely won't work now) |
Beta Was this translation helpful? Give feedback.
0 replies
-
(converted to Q&A discussion) This is the expected behavior, the commit is there if you examine the context via {
"id": "f269bfddac891c9c5a262fabe71d66f7fac16b13",
"message": "Add horizontal scrollbars and hide scrollbars if there is enough space (#30)\n\n---------\n\nCo-authored-by: Josh McKinney <[email protected]>\n",
"group": null,
"scope": null,
"links": [],
"author": {
"name": "Levi Zim",
"email": "[email protected]",
"timestamp": 1714021585
},
"committer": {
"name": "Orhun Parmaksız",
"email": "[email protected]",
"timestamp": 1714138320
},
"conventional": false,
"merge_commit": false,
"github": {
"username": null,
"pr_title": null,
"pr_number": null,
"pr_labels": [],
"is_first_time": false
}
}, However in the template:
And since the group is What you can do is add another parser as follows: commit_parsers = [
{ message = ".*", group = "Other" },
] Or update the existing parsers to match that commit: commit_parsers = [
{ message = "^Add", group = "Features" },
] |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there an existing issue for this?
Description of the bug
https://github.com/joshka/tui-scrollview
git cliff result
Changelog
All notable changes to this project will be documented in this file.
[unreleased]
📚 Documentation
⚙️ Miscellaneous Tasks
[0.3.4] - 2024-04-01
🐛 Bug Fixes
⚙️ Miscellaneous Tasks
conventional_commits
filter #25)[0.3.3] - 2024-03-28
📚 Documentation
⚙️ Miscellaneous Tasks
Note that
c1fd2a0 Add horizontal scrollbars and hide scrollbars if there is enough space (#30)
is missingfilter_unconventional = false in cliff.toml
Steps To Reproduce
gh repo clone joshka/tui-scrollview
git cliff
| grep "Add horizontal scrollbars"Expected behavior
Changelog should include the unconventional commit
Screenshots / Logs
No response
Software information
Additional context
No response
Beta Was this translation helpful? Give feedback.
All reactions