From 0273ac7162315412df5d7e6b81d5069aa755e0ff Mon Sep 17 00:00:00 2001 From: Jan Christoph Ebersbach Date: Thu, 30 May 2024 10:07:03 +0200 Subject: [PATCH] chore(ci): include full hash in changelog to enable autolinking --- cliff.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cliff.toml b/cliff.toml index 3fe30cc..c6abcc7 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 %} - - {% if commit.breaking %}[**breaking**] {% endif %}[{{ commit.id | truncate(length=7, end="") }}] {{ commit.message | upper_first }}\ + - {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.id }} {{ commit.message | upper_first }}\ {% endfor %} {% endfor %}\n """