From 2d5c0bf5492e344e2059ef2cd77e213f629c02ff Mon Sep 17 00:00:00 2001
From: Awiteb
Date: Thu, 22 May 2025 08:07:45 +0000
Subject: [PATCH] chore(git-cliff): Upper first after the trim
Signed-off-by: Awiteb
---
cliff.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cliff.toml b/cliff.toml
index 5028913..9c47b5a 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 | split(pat="\n") | first | split(pat=":") | slice(start=1) | join(sep=":") | upper_first | trim }} - \
+ - {{ commit.message | split(pat="\n") | first | split(pat=":") | slice(start=1) | join(sep=":") | trim | upper_first }} - \
({{ commit.author.name}} at [{{ commit.id | truncate(length=7, end="") }}]($REPO/commit/?id={{ commit.id }}))\
{% endfor %}
{% endfor %}\n