@@ -9,15 +9,15 @@ type DeployKatee struct {
99 VelaManifest string `json:"vela_manifest,omitempty" yaml:"vela_manifest,omitempty"`
1010 Retries int `yaml:"retries,omitempty"`
1111 NotifyOnSuccess bool `json:"notify_on_success,omitempty" yaml:"notify_on_success,omitempty"`
12- Notifications Notifications `json:"notifications,omitempty " yaml:"notifications,omitempty"`
12+ Notifications Notifications `json:"notifications" yaml:"notifications,omitempty"`
1313 Tag string `json:"tag,omitempty" yaml:"tag,omitempty"`
1414 BuildHistory int `json:"build_history,omitempty" yaml:"build_history,omitempty"`
1515 Environment string `json:"environment,omitempty" yaml:"environment,omitempty"`
1616 Namespace string `json:"namespace,omitempty" yaml:"namespace,omitempty"`
1717 DeploymentCheckTimeout int `json:"deployment_check_timeout,omitempty" yaml:"deployment_check_timeout,omitempty"`
1818 CheckInterval int `json:"check_interval,omitempty" yaml:"check_interval,omitempty"`
1919 MaxChecks int `json:"max_checks,omitempty" yaml:"max_checks,omitempty"`
20- GitHubEnvironment GitHubEnvironment `json:"github_environment,omitempty " yaml:"github_environment,omitempty"`
20+ GitHubEnvironment GitHubEnvironment `json:"github_environment" yaml:"github_environment,omitempty"`
2121 KateeManifest VelaManifest `json:"-" yaml:"-"`
2222}
2323
@@ -87,7 +87,7 @@ func (d DeployKatee) SetBuildHistory(buildHistory int) Task {
8787 return d
8888}
8989
90- func (d DeployKatee ) MarshalYAML () (interface {} , error ) {
90+ func (d DeployKatee ) MarshalYAML () (any , error ) {
9191 d .Type = "deploy-katee"
9292 return d , nil
9393}
0 commit comments