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