From 8bb7732015f845c35c8e53ea7228aaf43f00ab5f Mon Sep 17 00:00:00 2001 From: choco-sync Date: Thu, 1 Feb 2024 08:12:16 +0000 Subject: [PATCH] (maint) synced local '.templates/' with remote '.github/GitReleaseManager/.templates/' --- .templates/default/issue-note.sbn | 4 ++-- .templates/default/release-info.sbn | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.templates/default/issue-note.sbn b/.templates/default/issue-note.sbn index a00f95659ad..96507e1043c 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 -}} diff --git a/.templates/default/release-info.sbn b/.templates/default/release-info.sbn index 6a1084a59e9..c8f7e8e2661 100644 --- a/.templates/default/release-info.sbn +++ b/.templates/default/release-info.sbn @@ -1,9 +1,9 @@ {{ if issues.count > 0 if commits.count > 0 -}}As part of this release we had [{{ commits.count }} {{ commits.count | string.pluralize "commit" "commits" }}]({{ commits.html_url }}) which resulted in [{{ issues.count }} {{ issues.count | string.pluralize "issue" "issues" }}]({{ milestone.target.html_url }}?closed=1) being closed. +}}As part of this release we had [{{ commits.count }} {{ commits.count | string.pluralize "commit" "commits" }}]({{ commits.html_url }}) which resulted in [{{ issues.count }} {{ issues.count | string.pluralize "issue" "issues" }}]({{ milestone.target.html_url }}?{{ milestone.query_string }}) being closed. {{ else -}}As part of this release we had [{{ issues.count }} {{ issues.count | string.pluralize "issue" "issues" }}]({{ milestone.target.html_url }}?closed=1) closed. +}}As part of this release we had [{{ issues.count }} {{ issues.count | string.pluralize "issue" "issues" }}]({{ milestone.target.html_url }}?{{ milestone.query_string }}) closed. {{ end else if commits.count > 0 }}As part of this release we had [{{ commits.count }} {{ commits.count | string.pluralize "commit" "commits" }}]({{ commits.html_url }}).