Action Condition
Configure conditions that test statuses (DONE/SKIPPED) of previous actions. If conditions match, the current action runs; if not, apply a fallback (Stop, Skip Action, Refresh, or Goto Action).

Action Condition - Available from the second Action onward (the first action has
no previous status to check). - Can reference the status of any earlier action—not just the immediately preceding one.
Action Condition modal
Use the conditions grid to define how the current action should react to the results of previous actions. When the combined condition evaluates to true, the action is processed. When it evaluates to false (not matched), a fallback option is applied.

Conditions
Define one or more rows that evaluate the status of earlier actions. Combine rows with logical operators AND
and OR
.
Columns:
- OPR: Operator that combines this row with the previous one (
AND
orOR
). Defaults toAND
. - Action: The previous Action whose status you want to check.
- Status: The status to compare against (
DONE
orSKIPPED
). - Controls: Add or remove condition rows.
Status semantics:
- An action is
DONE
when it completed successfully. - An action is
SKIPPED
when it was skipped due to its own conditions or flow control.
When you have multiple rows, the OPR controls how they are combined. Truth table examples:
Action 1 status result | OPR | Action 2 status result | Result |
---|---|---|---|
true | OR | true | true |
true | OR | false | true |
false | OR | true | true |
false | OR | false | false |
true | AND | true | true |
false | AND | false | false |
true | AND | false | false |
false | AND | false | false |
When conditions are not matched
If the combined condition evaluates to false, select one of the fallback options shown in the modal:
- Stop — end the workflow and do not execute further actions.
- Skip Action — move to the next action.
- Refresh — reload the current page before continuing.
- Goto Action — jump to a specific action in the list (you’ll be prompted to choose which action).
Behavior summary:
Conditions matched? | Selected option | Result |
---|---|---|
true | — | Process Action |
false | Stop | Stop Action |
false | Skip Action | Skip Action |
false | Refresh | Refresh the page |
false | Goto Action | Go to specified action |