From 535ed23540631e0a8d47743b1e1d5971dc73a552 Mon Sep 17 00:00:00 2001 From: Christian Visintin Date: Mon, 8 Jun 2026 20:16:51 +0200 Subject: [PATCH] chore: update cliff config --- cliff.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cliff.toml b/cliff.toml index ed59087..d031031 100644 --- a/cliff.toml +++ b/cliff.toml @@ -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].*"