From 034aa7cda0945e640656e3b383d050451e6f12b3 Mon Sep 17 00:00:00 2001 From: Victor Adossi Date: Mon, 8 Sep 2025 20:20:33 +0900 Subject: [PATCH] fix(ops): add catch-all for non-conventional commits --- cliff.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cliff.toml b/cliff.toml index d34480a9..663374fa 100644 --- a/cliff.toml +++ b/cliff.toml @@ -60,6 +60,7 @@ commit_parsers = [ { message = '^test', group = '🧪 Testing' }, { message = '^release', skip = true }, { message = '^chore', group = '⚙️ Miscellaneous Tasks' }, + { message = ".*", group = "Other Changes", default_scope = "other changes"}, ] # filter out the commits that are not matched by commit parsers @@ -75,3 +76,6 @@ sort_commits = "newest" # glob pattern for matching git tags tag_pattern = "^[0-9]+.[0-9]+.[0-9]+$" + +# allow commits that don't follow the conventional commits standard +filter_unconventional = false