From ac061b71939a88003afef11e74f7cd758dd0ce8d Mon Sep 17 00:00:00 2001 From: Vlad Frangu Date: Tue, 12 Nov 2024 15:48:26 +0200 Subject: [PATCH] chore: make scope bolded and without wrapping in `()` (#152) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: make scope bolded and without wrapping in `()` * Update git-cliff-release/cliff.toml Co-authored-by: Martin Adámek --------- Co-authored-by: Martin Adámek --- git-cliff-release/cliff.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-cliff-release/cliff.toml b/git-cliff-release/cliff.toml index 512b75c..18afbb0 100644 --- a/git-cliff-release/cliff.toml +++ b/git-cliff-release/cliff.toml @@ -28,7 +28,7 @@ body = """ {% for group, commits in commits | group_by(attribute="group") %} ### {{ group | striptags | trim | upper_first }} {% for commit in commits %} - - {% if commit.scope %}*({{ commit.scope }})* {% endif %}\ + - {% if commit.scope %}**{{ commit.scope }}:** {% endif %}\ {% if commit.breaking %}[**breaking**] {% endif %}\ {% if commit.extra.pr_link %}\ {{ commit.message | upper_first | replace(from=commit.extra.raw_pr_link, to=commit.extra.pr_link) }}\