Skip to content
Merged
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
2 changes: 1 addition & 1 deletion workflow-management/actions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ These actions help control the sequence of operations in your workflow and make

* **Condition**: split the workflow into exactly two branches based on a [condition](/workflow-management/conditional-branching/).
* **Split**: split the workflow into multiple branches based on a [condition](/workflow-management/conditional-branching/).
* **Loop on Items**: iterate over a list of items obtained in a prior step. For better performance, OpenOps enables parallel execution of loop iterations whenever possible.
* **Loop on Items**: iterates sequentially over a list. Each iteration runs independently and may finish, fail, or pause, but the loop continues with the next item. After all iterations, the loop's final state reflects the outcomes: if any iterations fail, the loop fails; if any pause, the loop pauses until they resume. Workflow-wide limits (timeouts or size limits) can also halt execution.
* **Delay**: pause workflow execution for a specified time period or until a specific time.
* **End Workflow**: stop workflow execution. This is useful in [conditional branching](/workflow-management/conditional-branching/) when a branch represents a condition that ends the workflow early. When used inside a loop, this action skips to the next iteration of the loop.

Expand Down