Skip to content

Commit 03eb63b

Browse files
fix(ops): add catch-all for non-conventional commits (#290)
1 parent c1152e2 commit 03eb63b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

cliff.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ commit_parsers = [
6060
{ message = '^test', group = '<!-- 6 -->🧪 Testing' },
6161
{ message = '^release', skip = true },
6262
{ message = '^chore', group = '<!-- 7 -->⚙️ Miscellaneous Tasks' },
63+
{ message = ".*", group = "Other Changes", default_scope = "other changes"},
6364
]
6465

6566
# filter out the commits that are not matched by commit parsers
@@ -75,3 +76,6 @@ sort_commits = "newest"
7576

7677
# glob pattern for matching git tags
7778
tag_pattern = "^[0-9]+.[0-9]+.[0-9]+$"
79+
80+
# allow commits that don't follow the conventional commits standard
81+
filter_unconventional = false

0 commit comments

Comments
 (0)