fix(git-cliff): define Housekeeping group + match all tags

Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
Kevin Morris 2021-12-09 14:57:31 -08:00
parent 32660881f6
commit 60b098a2f2
No known key found for this signature in database
GPG key ID: F7E46DED420788F3

View file

@ -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"