Skip to content
This repository has been archived by the owner on Oct 26, 2021. It is now read-only.

Latest commit

 

History

History
23 lines (16 loc) · 1.46 KB

WorkflowStep.md

File metadata and controls

23 lines (16 loc) · 1.46 KB

WorkflowStep

WorkflowStep is a reference to a template to execute in a series of step

Properties

Name Type Description Notes
arguments Arguments [optional]
continueOn ContinueOn [optional]
hooks Map<String, LifecycleHook> Hooks holds the lifecycle hook which is invoked at lifecycle of step, irrespective of the success, failure, or error status of the primary step [optional]
name String Name of the step [optional]
onExit String OnExit is a template reference which is invoked at the end of the template, irrespective of the success, failure, or error of the primary template. DEPRECATED: Use Hooks[exit].Template instead. [optional]
template String Template is the name of the template to execute as the step [optional]
templateRef TemplateRef [optional]
when String When is an expression in which the step should conditionally execute [optional]
withItems List<Object> WithItems expands a step into multiple parallel steps from the items in the list [optional]
withParam String WithParam expands a step into multiple parallel steps from the value in the parameter, which is expected to be a JSON list. [optional]
withSequence Sequence [optional]