From b9589c9926a8955fd840164bd391effd4882abbe Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Wed, 17 Sep 2025 16:34:23 +0200 Subject: [PATCH] fix(changelog): fix links to commits in the git-cliff generated changelog --- cliff.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cliff.toml b/cliff.toml index c91a1e7..8cd125d 100644 --- a/cliff.toml +++ b/cliff.toml @@ -1,4 +1,3 @@ - [changelog] header = """ # Changelog @@ -17,7 +16,7 @@ body = """ ## {{ group | title }} {% for commit in commits %} - {% if commit.scope %}{{ commit.scope }}: {% endif %}{{ commit.message | split(pat="\n") | first | trim }} - ([{{ commit.id | truncate(length=7, end="") }}](https://github.com/mlabs-haskell/cardano-nix/commit/{{ commit.id }})) - {{ commit.author.name }} ({{ commit.author.timestamp | date(format="%Y-%m-%d") }}) + ([{{ commit.id | truncate(length=7, end="") }}](https://github.com/mlabs-haskell/cardano.nix/commit/{{ commit.id }})) - {{ commit.author.name }} ({{ commit.author.timestamp | date(format="%Y-%m-%d") }}) {% endfor %} {% endfor %} """