From 4cc55874c7faf4ca257f8dd9dd6abbbc633d24de Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Thu, 6 Jan 2022 23:41:38 +0000 Subject: [PATCH] chore: update cliff.toml --- cliff.toml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/cliff.toml b/cliff.toml index 594a3d0..8f36dc8 100644 --- a/cliff.toml +++ b/cliff.toml @@ -22,7 +22,7 @@ body = """ {% for group, commits in commits | group_by(attribute="group") %} ### {{ group | upper_first }} {% for commit in commits %} - - {{ commit.message | upper_first }} ([{{ commit.id | truncate(length=6, end="") }}](https://github.com/dtomlinson91/panaetius/commit/{{ commit.id }}))\ + - {{ commit.message | upper_first }} ([{{ commit.id | truncate(length=7, end="") }}](https://github.com/dtomlinson91/panaetius/commit/{{ commit.id }}))\ {% endfor %} {% endfor %}\n """ @@ -38,16 +38,17 @@ footer = """ conventional_commits = true # regex for parsing and grouping commits commit_parsers = [ - { message = "^feat", group = "Features"}, - { message = "^fix", group = "Bug Fixes"}, - { message = "^doc", group = "Documentation"}, - { message = "^perf", group = "Performance"}, - { message = "^refactor", group = "Refactor"}, - { message = "^style", group = "Styling"}, - { message = "^test", group = "Testing"}, + { message = "^feat", group = "โœจ Features"}, + { message = "^fix", group = "๐Ÿ› Bug Fixes"}, + { message = "^doc", group = "๐Ÿ“˜ Documentation"}, + { message = "^perf", group = "๐ŸŽ Performance"}, + { message = "^refactor", group = "๐Ÿ›  Refactor/Improvement"}, + { message = "^style", group = "๐ŸŽจ Styling"}, + { message = "^test", group = "๐Ÿงช Testing"}, + { message = "^build", group = "๐Ÿงฑ Build"}, + { body = ".*security", group = "๐Ÿ” Security"}, { message = "^chore\\(release\\): prepare for", skip = true}, - { message = "^chore", group = "Miscellaneous Tasks", skip = true}, - { body = ".*security", group = "Security"}, + { message = "^chore", group = "๐Ÿฅฑ Miscellaneous Tasks", skip = true}, ] # filter out the commits that are not matched by commit parsers filter_commits = false