@@ -522,7 +522,7 @@ func createDraftPR(repoPath, tag string) (err error) {
522522 pr , err := gh .CreatePullRequest (
523523 git .DefaultGithubOrg , git .DefaultGithubReleaseRepo , git .DefaultBranch ,
524524 fmt .Sprintf ("%s:%s" , releaseNotesOpts .githubOrg , branchname ),
525- "Update release notes draft to version " + tag , prBody ,
525+ "Update release notes draft to version " + tag , prBody , false ,
526526 )
527527 if err != nil {
528528 logrus .Warnf ("An error has occurred while creating the pull request for %s" , tag )
@@ -777,7 +777,7 @@ func createWebsitePR(repoPath, tag string) (err error) {
777777 defaultKubernetesSigsOrg , defaultKubernetesSigsRepo , git .DefaultBranch ,
778778 fmt .Sprintf ("%s:%s" , releaseNotesOpts .githubOrg , branchname ),
779779 "Patch relnotes.k8s.io to release " + tag ,
780- fmt .Sprintf ("Automated patch to update relnotes.k8s.io to k/k version `%s` " , tag ),
780+ fmt .Sprintf ("Automated patch to update relnotes.k8s.io to k/k version `%s` " , tag ), false ,
781781 )
782782 if err != nil {
783783 logrus .Warnf ("An error has occurred while creating the pull request for %s" , tag )
0 commit comments