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 b2eae3c commit eed4268Copy full SHA for eed4268
scm/driver/github/release.go
@@ -26,10 +26,10 @@ type release struct {
26
}
27
28
type releaseInput struct {
29
- Title string `json:"name"`
30
- Description string `json:"body"`
31
- Tag string `json:"tag_name"`
32
- Commitish string `json:"target_commitish"`
+ Title string `json:"name,omitempty"`
+ Description string `json:"body,omitempty"`
+ Tag string `json:"tag_name,omitempty"`
+ Commitish string `json:"target_commitish,omitempty"`
33
Draft bool `json:"draft"`
34
Prerelease bool `json:"prerelease"`
35
0 commit comments