From 2b8514a5644357417942e8e4702ca609fc83157f Mon Sep 17 00:00:00 2001 From: Derek McGowan Date: Tue, 4 Nov 2025 21:54:32 -0800 Subject: [PATCH] Make highlight titles bold Bold text better matches the formatting of the titles Signed-off-by: Derek McGowan --- github.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github.go b/github.go index f6b702e..5dd2d8b 100644 --- a/github.go +++ b/github.go @@ -123,7 +123,7 @@ func (p *githubChangeProcessor) prChange(c *change, info pullRequestInfo, pr int if releaseNote != "" { c.Highlight = fmt.Sprintf("%s ([%s#%d](%s))", releaseNote, p.linkName, pr, c.Link) } else { - c.Highlight = c.Formatted + c.Highlight = fmt.Sprintf("**%s** ([%s#%d](%s))", c.Title, p.linkName, pr, c.Link) } }