We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c70d07 commit 7ad4bd9Copy full SHA for 7ad4bd9
make_release.go
@@ -296,11 +296,11 @@ func (rm *ReleaseManager) CreateGitHubRelease(version string) error {
296
ctx := context.Background()
297
298
release := &github.RepositoryRelease{
299
- TagName: github.String(version),
300
- TargetCommitish: github.String("main"),
301
- Name: github.String(fmt.Sprintf("Release %s", version)),
302
- Body: github.String(fmt.Sprintf("Release %s", version)),
303
- Prerelease: github.Bool(false),
+ TagName: github.String(version),
+ TargetCommitish: github.String("main"),
+ Name: github.String(fmt.Sprintf("Release %s", version)),
+ Prerelease: github.Bool(false),
+ GenerateReleaseNotes: github.Bool(true),
304
}
305
306
_, _, err := rm.client.Repositories.CreateRelease(
0 commit comments