Skip to main content

PARALLEL

Runs multiple step lists in parallel and merges their flow contexts upon completion.

At a glance

  • Category Control
  • Version: 1.0.0
  • Applications: all
  • Scope: all

Config Options

NameDescriptionDefaultRequiredResolvedConstraintsConditional Rules
stepsAn array of step arrays, where each sub-array represents a branch of steps to execute in parallel.NonetruefalseItems:2-∞None

Examples

Run two branches in parallel

 - step: PARALLEL
steps:
- # Branch 1
- step: SET
branch1Var: "value1"
- # Branch 2
- step: SET
branch2Var: "value2"

See Also

General Resources: