chore: update cliff config

This commit is contained in:
Christian Visintin
2026-06-08 20:16:51 +02:00
parent 70bd7d7330
commit 535ed23540

View File

@@ -17,8 +17,7 @@ Released on {{ timestamp | date(format="%Y-%m-%d") }}
{%- for group, commits in commits | group_by(attribute="group") %}
### {{ group | upper_first }}
{%- for commit in commits %}
{% for commit in commits %}
- {% if commit.breaking %}💥 {% endif %}{% if commit.scope %}**{{ commit.scope }}:** {% endif %}{{ commit.message | split(pat="\n") | first | trim }}
{%- if commit.body %}
> {{ commit.body | split(pat="\n") | join(sep="\n > ") }}
@@ -40,7 +39,7 @@ commit_parsers = [
{ message = "^doc", group = "Documentation" },
{ message = "^test", group = "Testing" },
{ message = "^ci", group = "CI" },
{ message = "^chore", group = "Miscellaneous" },
{ message = "^chore", skip = true },
]
filter_commits = false
tag_pattern = "v[0-9].*"