diff --git a/cliff.toml b/cliff.toml index a5ad40a96..839ef4809 100644 --- a/cliff.toml +++ b/cliff.toml @@ -6,7 +6,7 @@ # parse the commits based on https://www.conventionalcommits.org conventional_commits = true # filter out the commits that are not conventional -filter_unconventional = true +filter_unconventional = false # process each line of a commit as an individual commit split_commits = false # regex for preprocessing the commit messages @@ -25,6 +25,7 @@ commit_parsers = [ { message = "^chore\\(release\\): prepare for", skip = true}, { message = "^chore", group = "Miscellaneous Tasks"}, { message = "^build", group = "Build system"}, + { message = ".*", group = "Other"}, # { body = ".*security", group = "Security"}, ] # protect breaking changes from being skipped due to matching a skipping commit_parser