We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ab59bf commit 74731d3Copy full SHA for 74731d3
1 file changed
src/cliff.toml
@@ -60,12 +60,12 @@ conventional_commits = true
60
filter_unconventional = true
61
split_commits = false
62
commit_preprocessors = [
63
- { pattern = '^Revert "([a-z]+)(\((.+)\))?: (.+)"$', replace = "revert($1:$3): $4" },
64
- { pattern = '^Revert "([a-z]+): (.+)"$', replace = "revert($1): $2" },
+ { pattern = '^Revert "([a-z]+)(\((.+)\))?: (.+)"', replace = "revert: $1$2: $4" },
+ { pattern = '^Revert "([a-z]+): (.+)"', replace = "revert: $1: $2" },
65
]
66
67
commit_parsers = [
68
- { message = "^revert", group = "Revert" },
+ { message = "^(?i)revert", group = "Revert" },
69
{ message = "^fix", group = "Bug Fixes" },
70
{ message = "^feat", group = "Features" },
71
{ message = "^perf", group = "Performance" },
0 commit comments