|
|
@@ -194,6 +194,12 @@ type PatchUpdateReleaseTags struct {
|
|
|
Tags []string `json:"tags"`
|
|
|
}
|
|
|
|
|
|
+type PartialGitActionConfig struct {
|
|
|
+ // The branch to use for the git repository
|
|
|
+ // required: true
|
|
|
+ GitBranch string `json:"branch" form:"required"`
|
|
|
+}
|
|
|
+
|
|
|
type UpdateGitActionConfigRequest struct {
|
|
|
- GitActionConfig *GitActionConfig `json:"git_action_config"`
|
|
|
+ GitActionConfig *PartialGitActionConfig `json:"git_action_config"`
|
|
|
}
|