File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 63
63
unknown ,
64
64
}
65
65
66
- repo = flag .String ("repository" , "kubernetes-sigs/cluster-api" , "The tag or commit to start from." )
66
+ repo = flag .String ("repository" , "kubernetes-sigs/cluster-api" , "The repo to run the tool from." )
67
67
68
68
fromTag = flag .String ("from" , "" , "The tag or commit to start from." )
69
69
@@ -447,6 +447,9 @@ func modifyEntryTitle(title string, prefixes []string) string {
447
447
// generateReleaseNoteEntry processes a commit into a PR line item for the release notes.
448
448
func generateReleaseNoteEntry (c * commit ) (* releaseNoteEntry , error ) {
449
449
entry := & releaseNoteEntry {}
450
+ if c .body == "" {
451
+ c .body = "ERROR: BODY MISSING. FIX MANUALLY"
452
+ }
450
453
entry .title = trimTitle (c .body )
451
454
var fork string
452
455
You can’t perform that action at this time.
0 commit comments