From f41375fa187b06d38d89cd4da7a4dbea8188ed46 Mon Sep 17 00:00:00 2001 From: Damien Chantelouve Date: Mon, 3 Jun 2024 16:52:54 +0200 Subject: [PATCH] chore(cliff): add more detected words (mostly caps versions) --- cliff.toml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/cliff.toml b/cliff.toml index 2772d45..5fffede 100644 --- a/cliff.toml +++ b/cliff.toml @@ -56,16 +56,16 @@ commit_preprocessors = [ ] # regex for parsing and grouping commits commit_parsers = [ - { message = "^feat", group = "๐Ÿš€ Features" }, - { message = "^fix", group = "๐Ÿ› Bugs fixed" }, - { message = "^ticket", group = "๐Ÿšœ Ticket" }, - { message = "^update|^refact|^maj", group = "๐Ÿ”จ Update" }, - { message = "^doc", group = "๐Ÿ“š Documentation" }, - { message = "^init", group = "๐Ÿ’ก Initialisation" }, - { message = "^style", group = "๐ŸŽจ Style" }, - { message = "^test", group = "๐Ÿงช Testing" }, - { message = "^chore|^ci", group = "โš™๏ธ Miscellaneous Tasks (CI...)" }, - { message = "^revert", group = "โ—€๏ธ Revert" }, + { message = "^feat|^Feat", group = "๐Ÿš€ Features" }, + { message = "^fix|^Fix", group = "๐Ÿ› Bugs fixed" }, + { message = "^ticket|^Ticket|^client|^Client", group = "๐Ÿšœ Ticket" }, + { message = "^update|^refact|^maj|^Update|^Refact|^Maj", group = "๐Ÿ”จ Update" }, + { message = "^doc|^Doc", group = "๐Ÿ“š Documentation" }, + { message = "^init|^Init|^first|^First", group = "๐Ÿ’ก Initialisation" }, + { message = "^style|^Style", group = "๐ŸŽจ Style" }, + { message = "^test|^Test", group = "๐Ÿงช Testing" }, + { message = "^chore|^Chore|^ci|^CI", group = "โš™๏ธ Miscellaneous Tasks (CI...)" }, + { message = "^revert|^Revert", group = "โ—€๏ธ Revert" }, ] # protect breaking changes from being skipped due to matching a skipping commit_parser protect_breaking_commits = false