From b7457785e6b753ccd9c163b18ad557a0a621f87c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Sat, 19 Aug 2023 14:50:01 +0300 Subject: [PATCH] chore(config): add additional parsers for default config --- config/cliff.toml | 6 +++++- examples/detailed.toml | 5 ++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/config/cliff.toml b/config/cliff.toml index 10e0849dfe..3688e1d692 100644 --- a/config/cliff.toml +++ b/config/cliff.toml @@ -57,8 +57,12 @@ commit_parsers = [ { message = "^style", group = "Styling" }, { message = "^test", group = "Testing" }, { message = "^chore\\(release\\): prepare for", skip = true }, - { message = "^chore", group = "Miscellaneous Tasks" }, + { message = "^chore\\(deps\\)", skip = true }, + { message = "^chore\\(pr\\)", skip = true }, + { message = "^chore\\(pull\\)", skip = true }, + { message = "^chore|ci", group = "Miscellaneous Tasks" }, { body = ".*security", group = "Security" }, + { message = "^revert", group = "Revert" }, ] # protect breaking changes from being skipped due to matching a skipping commit_parser protect_breaking_commits = false diff --git a/examples/detailed.toml b/examples/detailed.toml index 310dcf40ed..a663af7433 100644 --- a/examples/detailed.toml +++ b/examples/detailed.toml @@ -54,8 +54,11 @@ commit_parsers = [ { message = "^refactor", group = "Refactor" }, { message = "^style", group = "Styling" }, { message = "^test", group = "Testing" }, + { message = "^chore\\(deps\\)", skip = true }, + { message = "^chore\\(pr\\)", skip = true }, + { message = "^chore\\(pull\\)", skip = true }, { message = "^chore\\(release\\): prepare for", skip = true }, - { message = "^chore", group = "Miscellaneous Tasks" }, + { message = "^chore|ci", group = "Miscellaneous Tasks" }, { body = ".*security", group = "Security" }, ] # protect breaking changes from being skipped due to matching a skipping commit_parser