Understanding Triggers, Checks, and Actions (Full Breakdown)
How Components Work Together
A workflow follows a structured flow:
• Trigger → Check → Action
Each step depends on the previous one.
Workflow Logic Flow
Trigger activates
Checks are evaluated
If conditions pass → Actions execute
If conditions fail → Workflow stops
Execution Order
Actions are executed in sequence based on configuration. Multiple actions will run in the order they are defined.
Full Example
• Trigger → Order Created
• Check → Country = UK
• Action → Add Insert
This ensures automation only occurs under the correct conditions
Important Notes
• Logic must be clearly defined
• Order of actions matters
• Failed checks stop execution
• Complex workflows should be tested thoroughly
FAQs
What happens if a check fails?
The workflow stops and no actions run
Can I chain multiple actions?
Yes — actions run sequentially

