From 1262a5622a4025dc6babf436331a7ef49b32c225 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Tue, 14 Oct 2025 09:12:49 +0200 Subject: [PATCH] fix(commits): remove unused chore message patterns from config Removes unused chore message patterns for deps, pr, and pull from the commit configuration in cliff.toml. This streamlines the commit message grouping and improves maintainability by eliminating unnecessary entries. --- cliff.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/cliff.toml b/cliff.toml index 16d7c97..7df65bd 100644 --- a/cliff.toml +++ b/cliff.toml @@ -71,9 +71,6 @@ commit_parsers = [ { message = "^style", group = "🎨 Styling" }, { message = "^test", group = "🧪 Testing" }, { message = "^chore\\(release\\): prepare for", skip = true }, - { 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" },