Repository: Rename changelog/Changelog-*.md into changelog/controller-*.md.

This commit is contained in:
Marco Ebert 2023-11-08 13:47:17 +01:00
parent 7e34a676b9
commit 84bdad5341
12 changed files with 1 additions and 1 deletions

View file

@ -44,7 +44,7 @@ func (r ReleaseNote) Template() {
Debug("ChangeLog Templates %s", string(changelogTemplate))
t := template.Must(template.New("changelog").Parse(string(changelogTemplate)))
// create a new file
file, err := os.Create(fmt.Sprintf("changelog/Changelog-%s.md", r.Version))
file, err := os.Create(fmt.Sprintf("changelog/controller-%s.md", r.Version))
if err != nil {
ErrorF("Could not create changelog file %s", err)
}