From 6b819ce9a3f834054a8fff423a73afcf8bcf1908 Mon Sep 17 00:00:00 2001 From: Gary Ewan Park Date: Thu, 6 Feb 2025 14:13:07 +0000 Subject: [PATCH] (maint) Update GRM template Now that we are switching to a newer version of GitReleaseManager, we need to switch the template variable being used. This changed from number to public_number. --- .templates/default/issue-note.sbn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.templates/default/issue-note.sbn b/.templates/default/issue-note.sbn index 10c10a97d3..03dc651968 100644 --- a/.templates/default/issue-note.sbn +++ b/.templates/default/issue-note.sbn @@ -1,6 +1,6 @@ {{ if issue_label == "Bug" || issue_label == "Bug Fix" || issue_label == "Bug Fixes" -}}- Fix - {{ issue.title }} - see [#{{ issue.number }}]({{ issue.html_url }}). +}}- Fix - {{ issue.title }} - see [#{{ issue.public_number }}]({{ issue.html_url }}). {{ else -}}- {{ issue.title }} - see [#{{ issue.number }}]({{ issue.html_url }}). +}}- {{ issue.title }} - see [#{{ issue.public_number }}]({{ issue.html_url }}). {{ end -}}