Skip to content

Commit

Permalink
Add support for release-note/security label
Browse files Browse the repository at this point in the history
Signed-off-by: Chance Zibolski <[email protected]>
  • Loading branch information
chancez authored and aanm committed Jul 22, 2024
1 parent b3c084e commit a9d1b4c
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions cmd/changelog/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,17 @@ import (
)

var releaseNotes = map[string]string{
"release-note/major": "**Major Changes:**",
"release-note/minor": "**Minor Changes:**",
"release-note/bug": "**Bugfixes:**",
"release-note/ci": "**CI Changes:**",
"release-note/misc": "**Misc Changes:**",
"release-note/none": "**Other Changes:**",
"release-note/security": "**Important Security Updates:**",
"release-note/major": "**Major Changes:**",
"release-note/minor": "**Minor Changes:**",
"release-note/bug": "**Bugfixes:**",
"release-note/ci": "**CI Changes:**",
"release-note/misc": "**Misc Changes:**",
"release-note/none": "**Other Changes:**",
}

var defaultReleaseNotesOrder = []string{
"release-note/security",
"release-note/major",
"release-note/minor",
"release-note/bug",
Expand Down

0 comments on commit a9d1b4c

Please sign in to comment.