From 3edbb13369ed0c8deb7c42d1e973ba457470e7f2 Mon Sep 17 00:00:00 2001 From: Vault Automation Date: Thu, 28 Aug 2025 17:20:47 -0600 Subject: [PATCH] changelog: fix commit URL in CE generated template (#9010) (#9013) Signed-off-by: Ryan Cragun Co-authored-by: Ryan Cragun --- changelog/note-ce.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog/note-ce.tmpl b/changelog/note-ce.tmpl index dad09f23b7..7239145a41 100644 --- a/changelog/note-ce.tmpl +++ b/changelog/note-ce.tmpl @@ -1,3 +1,3 @@ {{- define "note" -}} -{{.Body}}{{if not (stringHasPrefix .Issue "_")}} [[GH-{{- .Issue -}}](https://github.com/hashicorp/vault/pull/{{- .Issue -}})]{{else}}{{if .Hash }} ([{{- slice .Hash 0 8 -}}](https://github.com/hashicorp/vault/commits/{{- .Hash -}})){{end}}{{end}} +{{.Body}}{{if not (stringHasPrefix .Issue "_")}} [[GH-{{- .Issue -}}](https://github.com/hashicorp/vault/pull/{{- .Issue -}})]{{else}}{{if .Hash }} ([{{- slice .Hash 0 8 -}}](https://github.com/hashicorp/vault/commit/{{- .Hash -}})){{end}}{{end}} {{- end -}}