Before you start — pick the right first task
The most common mistake is picking something too ambitious. Your first automation should be small, boring, and easy to verify. Save the multi-branch flows for automation #5.
- Choose a task you do at least once a week
- Pick something with a clear trigger (a new email, form, or row)
- Pick something with an obvious success signal (a Slack ping, a new row)
- Skip anything involving money or customer-facing emails on day one
Step 1 — Sign up for a free automation tool
You have three solid free tiers in 2026. Any of them will handle a first workflow — pick the one whose interface you find least intimidating.
- Make — the most visual, great for seeing the flow as you build
- Pabbly Connect — the cheapest to scale into once you outgrow the free tier
- n8n — free and self-hostable if you're technical
Step 2 — Map the flow on paper first
Write the trigger at the top, then each step underneath in plain English. Two minutes on paper saves twenty minutes clicking around in the builder.
- Trigger: New row in Google Sheets
- Step 1: Look up the customer in Airtable
- Step 2: Send a confirmation email
- Step 3: Post a summary to the Slack #sales channel
Step 3 — Build one module at a time
Open your chosen tool and add the trigger first. Test it with real data. Then add the next step and test again. Debugging one new module is easy; debugging five at once is misery.
Step 4 — Add basic error handling
Before you turn the workflow on, add a fallback — usually an email to yourself if any step fails. This is the difference between a workflow you trust and one you're constantly babysitting.
- Add an error handler on the trigger
- Send yourself an email with the failed record
- Log failures to a Google Sheet so you can spot patterns
Step 5 — Turn it on and watch it for a week
Enable the scenario. Don't build a second automation yet. Watch this one run for a full week, fix anything weird, and only then move on. The habit matters more than the number of workflows.
What to automate next
Once your first workflow is boringly reliable, these are the next three most people build.
- New form submission → Airtable row → Slack notification (great with Fillout)
- New Stripe payment → send receipt → tag customer in your CRM
- New calendar event → send prep email → create a Notion doc
