build(git-cliff): do not capitalize the first letter of commit message

Some commit messages start with the function names
for additional context and these should not be capitalized.
This commit is contained in:
link2xt
2026-02-14 09:25:55 +00:00
committed by l
parent 624fc394d9
commit 85de4bf678
2 changed files with 2 additions and 2 deletions

View File

@@ -66,7 +66,7 @@ body = """
{% for commit in commits %}
- {% if commit.breaking %}[**breaking**] {% endif %}\
{% if commit.scope %}{{ commit.scope }}: {% endif %}\
{{ commit.message | upper_first }}.\
{{ commit.message }}.\
{% if commit.footers is defined %}\
{% for footer in commit.footers %}{% if 'BREAKING CHANGE' in footer.token %}
{% raw %} {% endraw %}- {{ footer.value }}\