Skip to content

Commit

Permalink
chore(changelog): skip the dependency bump entries
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Aug 9, 2023
1 parent 2e047cb commit 5aa2933
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,20 +53,21 @@ filter_unconventional = true
split_commits = false
# regex for preprocessing the commit messages
commit_preprocessors = [
{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://github.com/orhun/runst/issues/${2}))"},
{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://github.com/orhun/runst/issues/${2}))" },
]
# regex for parsing and grouping commits
commit_parsers = [
{ message = "^feat", group = "<!-- 0 -->πŸš€ Features"},
{ message = "^fix", group = "<!-- 1 -->πŸ› Bug Fixes"},
{ message = "^doc", group = "<!-- 3 -->πŸ“š Documentation"},
{ message = "^perf", group = "<!-- 4 -->⚑ Performance"},
{ message = "^refactor", group = "<!-- 2 -->🚜 Refactor"},
{ message = "^style", group = "<!-- 5 -->🎨 Styling"},
{ message = "^test", group = "<!-- 6 -->πŸ§ͺ Testing"},
{ message = "^chore\\(release\\): prepare for", skip = true},
{ message = "^chore", group = "<!-- 7 -->βš™οΈ Miscellaneous Tasks"},
{ body = ".*security", group = "<!-- 8 -->πŸ›‘οΈ Security"},
{ message = "^feat", group = "<!-- 0 -->πŸš€ Features" },
{ message = "^fix", group = "<!-- 1 -->πŸ› Bug Fixes" },
{ message = "^doc", group = "<!-- 3 -->πŸ“š Documentation" },
{ message = "^perf", group = "<!-- 4 -->⚑ Performance" },
{ message = "^refactor", group = "<!-- 2 -->🚜 Refactor" },
{ message = "^style", group = "<!-- 5 -->🎨 Styling" },
{ message = "^test", group = "<!-- 6 -->πŸ§ͺ Testing" },
{ message = "^chore\\(release\\): prepare for", skip = true },
{ message = "^chore\\(deps\\): bump*", skip = true },
{ message = "^chore", group = "<!-- 7 -->βš™οΈ Miscellaneous Tasks" },
{ body = ".*security", group = "<!-- 8 -->πŸ›‘οΈ Security" },
]
# protect breaking changes from being skipped due to matching a skipping commit_parser
protect_breaking_commits = false
Expand Down

0 comments on commit 5aa2933

Please sign in to comment.