From 60b098a2f2c74b03c7f4a8b8ce1e3649cd27c8d1 Mon Sep 17 00:00:00 2001 From: Kevin Morris Date: Thu, 9 Dec 2021 14:57:31 -0800 Subject: [PATCH] fix(git-cliff): define Housekeeping group + match all tags Signed-off-by: Kevin Morris --- cliff.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cliff.toml b/cliff.toml index b71ea672..6ee495a3 100644 --- a/cliff.toml +++ b/cliff.toml @@ -63,6 +63,7 @@ commit_parsers = [ { message = "^refactor", group = "Refactor"}, { message = "^style", group = "Styling"}, { message = "^test", group = "Testing"}, + { message = "^housekeep", group = "Housekeeping"}, { message = "^chore\\(release\\): prepare for", skip = true}, { message = "^chore", group = "Miscellaneous Tasks"}, { body = ".*security", group = "Security"}, @@ -70,6 +71,6 @@ commit_parsers = [ # filter out the commits that are not matched by commit parsers filter_commits = false # glob pattern for matching git tags -tag_pattern = "v[0-9]*" +tag_pattern = "*[0-9]*" # regex for skipping tags skip_tags = "v0.1.0-beta.1"