Skip to content

Commit

Permalink
fix(config): update commit parsers to match the commit type
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Jun 19, 2021
1 parent 28171f0 commit 24b9068
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ trim = true
conventional_commits = true
# regex for parsing and grouping commits
commit_parsers = [
{ message = "feat*", group = "Features"},
{ message = "fix*", group = "Bug Fixes"},
{ message = "doc*", group = "Documentation"},
{ message = "perf*", group = "Performance"},
{ message = "refactor*", group = "Refactor"},
{ message = "style*", group = "Styling"},
{ message = "test*", group = "Testing"},
{ message = "chore: Prepare*", skip = true},
{ message = "chore*", group = "Miscellaneous Tasks"},
{ message = "^feat*", group = "Features"},
{ message = "^fix*", group = "Bug Fixes"},
{ message = "^doc*", group = "Documentation"},
{ message = "^perf*", group = "Performance"},
{ message = "^refactor*", group = "Refactor"},
{ message = "^style*", group = "Styling"},
{ message = "^test*", group = "Testing"},
{ message = "^chore: Prepare*", skip = true},
{ message = "^chore*", group = "Miscellaneous Tasks"},
{ body = ".*security", group = "Security"},
]
# filter out the commits that are not matched by commit parsers
Expand Down

0 comments on commit 24b9068

Please sign in to comment.