From bb45c249a394989ea5d514d857ae1ac61efd1fe4 Mon Sep 17 00:00:00 2001 From: link2xt Date: Mon, 15 May 2023 12:34:39 +0000 Subject: [PATCH] build(git-cliff): add unconventional commits to "Other" section --- cliff.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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