@@ -45,7 +45,6 @@ split_commits = false
45
45
commit_preprocessors = [
46
46
# { pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://github.com/orhun/git-cliff/issues/${2}))"}, # replace issue numbers
47
47
]
48
- # regex for parsing and grouping commits
49
48
commit_parsers = [
50
49
{ message = " ^feat" , group = " Features" },
51
50
{ message = " ^fix" , group = " Bug Fixes" },
@@ -55,9 +54,10 @@ commit_parsers = [
55
54
{ message = " ^style" , group = " Styling" },
56
55
{ message = " ^test" , group = " Testing" },
57
56
{ message = " ^chore: Prepare" , skip = true },
57
+ { message = " ^chore\\ (release\\ )" , skip = true },
58
58
{ message = " ^chore" , group = " Miscellaneous Tasks" },
59
59
{ body = " .*security" , group = " Security" },
60
- ]
60
+ ] # regex for parsing and grouping commits
61
61
# protect breaking changes from being skipped due to matching a skipping commit_parser
62
62
protect_breaking_commits = false
63
63
# filter out the commits that are not matched by commit parsers
0 commit comments