Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions pipelines/types/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -682,6 +682,7 @@ type PublishGenevaAutomationStep struct {
KustoClientSecretName Value `json:"kustoClientSecretName,omitempty"`
GenevaAutomationSecretName Value `json:"genevaAutomationSecretName,omitempty"`
IcmServiceId Value `json:"icmServiceId,omitempty"`
IcmTeamId *Value `json:"icmTeamId,omitempty"`
WorkflowPath string `json:"workflowPath,omitempty"`

Comment thread
jonathan34c marked this conversation as resolved.
GenevaAutomationArtifact AdoArtifactDownloadPipelineReference `json:"genevaAutomationArtifact,omitempty"`
Expand All @@ -698,6 +699,9 @@ func (s *PublishGenevaAutomationStep) RequiredInputs() []StepDependency {
deps = append(deps, val.Input.StepDependency)
}
}
if s.IcmTeamId != nil && s.IcmTeamId.Input != nil {
deps = append(deps, s.IcmTeamId.Input.StepDependency)
}

slices.SortFunc(deps, SortDependencies)
deps = slices.Compact(deps)
Expand Down
3 changes: 3 additions & 0 deletions pipelines/types/pipeline.schema.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -665,6 +665,9 @@
"icmServiceId": {
"$ref": "#/definitions/value"
},
"icmTeamId": {
"$ref": "#/definitions/value"
},
"workflowPath": {
"type": "string"
},
Expand Down
Loading