diff --git a/hack/tools/release/notes/main.go b/hack/tools/release/notes/main.go index 0da080315904..dfa56de0e177 100644 --- a/hack/tools/release/notes/main.go +++ b/hack/tools/release/notes/main.go @@ -39,6 +39,7 @@ Use these as the base of your release notes. */ const ( + alphaRelease = "ALPHA RELEASE" betaRelease = "BETA RELEASE" releaseCandidate = "RELEASE CANDIDATE" ) @@ -146,6 +147,8 @@ func releaseTypeFromNewTag(newTagConfig string) string { return releaseCandidate case "beta": return betaRelease + case "alpha": + return alphaRelease } return "" }