commit 05a00d919d921a59ae64e3bd74c41a77b275b33a parent e53391ba881e00df7647fa93e1956726785e8e75 Author: MTRNord <mtrnord1@gmail.com> Date: Fri, 24 Mar 2023 20:56:59 +0100 fix(git-cliff): Properly linkify commits Diffstat:
| M | cliff.toml | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cliff.toml b/cliff.toml @@ -18,7 +18,7 @@ body = """ {% for group, commits in commits | group_by(attribute="group") %} ### {{ group | upper_first }} {% for commit in commits %} - - {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message | upper_first }} ([{{ commit.id | truncate(length=7, end="") }}]({{ commit.id }}))\ + - {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message | upper_first }} ([{{ commit.id | truncate(length=7, end="") }}](https://github.com/MTRNord/knowledge-search/commit/{{ commit.id }}))\ {% endfor %} {% endfor %}\n """