mirror of
https://github.com/dtomlinson91/panaetius.git
synced 2025-12-22 04:55:44 +00:00
chore: update cliff.toml
This commit is contained in:
21
cliff.toml
21
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
|
||||
|
||||
Reference in New Issue
Block a user