All learning
Practical advice
Start an automation with one trigger and one action
Keep a first automation small enough to understand, test and repair before adding branches or AI steps.
The practical answer
Start with this principle
A reliable two-step automation teaches you more than an ambitious workflow you cannot diagnose. First prove that one event can create one correct result.
Do this in order
Three steps you can use today
Define the trigger
Use a specific event such as a form submission or a status changing to approved. Avoid vague triggers that can fire more than once.
Choose one useful action
Create a record, send an internal alert or prepare a draft. Keep the result reversible and visible during the trial.
Test normal and awkward cases
Try complete information, missing information and a duplicate event. Confirm that failures stop safely and tell the right person.
Copy and adapt
Trigger and action specification
WHEN (the trigger)
A ............... happens in ...............
Example: a form is submitted on the website.
THEN (the action)
Do ............... in ...............
Example: create a record in the CRM and send an acknowledgement.
NOT included in version one: ..................................
If the trigger fires and the action fails, notify: ............
Write version one so it does one thing. Everything else is version two.