Conditional
Branch your workflow logic
How does the Conditional Step work?
The Conditional Step has three separate pieces:
The Condition: a Javascript expression that evaluates to either to
True
orFalse
Action Taken if the Condition evaluates to
True
: the steps in the top half of the conditional will be executedAction Taken if the Condition evaluates to
False
: the steps in the lower half of the conditional will be executed
Examples
In the screenshot below, we can understand the Conditional Step to perform as:
The Condition: Check if the input
push_to_webflow
isYes
If True: Run a Workflow that writes an article and pushes it to Webflow
If False: Run a Workflow that writes an article, but do NOT push it to Webflow
Let's do a quick walkthrough of a simplified workflow that showcases how your output may change as your input returns true or false on the condition.
Last updated