From 559c03d1d379542e88b09997300081c5299356ef Mon Sep 17 00:00:00 2001 From: Marco Ebert Date: Wed, 8 Nov 2023 14:15:07 +0100 Subject: [PATCH] Chart: Rename `changelog.md.gotmpl` into `changelog/helm-chart.md.gotmpl`. --- .../{changelog.md.gotmpl => changelog/helm-chart.md.gotmpl} | 0 magefiles/utils/releasenote.go | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename charts/ingress-nginx/{changelog.md.gotmpl => changelog/helm-chart.md.gotmpl} (100%) diff --git a/charts/ingress-nginx/changelog.md.gotmpl b/charts/ingress-nginx/changelog/helm-chart.md.gotmpl similarity index 100% rename from charts/ingress-nginx/changelog.md.gotmpl rename to charts/ingress-nginx/changelog/helm-chart.md.gotmpl diff --git a/magefiles/utils/releasenote.go b/magefiles/utils/releasenote.go index f2e72f921..8dc081428 100644 --- a/magefiles/utils/releasenote.go +++ b/magefiles/utils/releasenote.go @@ -58,7 +58,7 @@ func (r ReleaseNote) Template() { func (r ReleaseNote) HelmTemplate() { // Files are provided as a slice of strings. - changelogTemplate, err := os.ReadFile("charts/ingress-nginx/changelog.md.gotmpl") + changelogTemplate, err := os.ReadFile("charts/ingress-nginx/changelog/helm-chart.md.gotmpl") if err != nil { ErrorF("Could not read changelog template file %s", err) }