Identifying What to Automate
Not all repetitive tasks are worth automating. The classic framework: if a task takes less than 2 minutes and happens rarely, just do it. If it takes 5+ minutes and happens weekly, automate it. The productivity gain compounds with frequency.
Good automation candidates have these characteristics:
- Rule-based: The task follows consistent if-then logic. "If a form is submitted, send an email" is automatable. "Reply thoughtfully to a client complaint" is not.
- Digital trigger: Something digital starts the process — a form submission, an email arriving, a file being saved, a calendar event.
- Consistent output: The output is always the same type of thing — a spreadsheet row, a sent email, a saved file, a notification.
- High frequency: Done daily or weekly rather than once a month or quarter.
Common high-ROI automation targets: saving email attachments to cloud storage, adding form submissions to a spreadsheet, sending follow-up messages after a trigger event, renaming and organizing downloaded files, converting and compressing files on arrival.
Zapier — Easiest Entry Point
Zapier is the most beginner-friendly automation platform. You create "Zaps" — workflows that connect apps. The free tier (as of 2026) allows 100 tasks per month across single-step Zaps. While limited, this is enough to automate 2–3 lightweight tasks.
How it works: Choose a Trigger (what starts the automation — "New email received," "Form submitted," "File added to Dropbox") and an Action (what happens next — "Create spreadsheet row," "Send Slack message," "Add contact to CRM"). Multi-step Zaps (requiring a paid plan) can chain multiple actions.
Free tier best uses:
- New Typeform/Jotform submission → Add row to Google Sheets
- New RSS feed item → Send Gmail digest
- New Calendly booking → Create Google Calendar event
- New Gmail label → Save attachment to Google Drive
Limitation: 100 tasks/month on free. Each action counts as one task. A Zap that runs 5 times per day exhausts the free tier in 20 days.
Make (formerly Integromat) — More Power, Free Tier
Make offers 1,000 operations per month on the free tier — 10× more than Zapier's free plan. Its visual workflow builder is more complex but significantly more capable, supporting multi-path branching, data transformation, error handling, and iterators (processing each item in a list).
Make's scenarios (their term for workflows) can handle more sophisticated logic: "if the email subject contains 'invoice,' extract the amount, save the attachment to Drive, add a row to Sheets, and send a Slack notification." This kind of multi-step, conditional flow requires a paid Zapier plan but runs fine on Make's free tier.
When to choose Make over Zapier: When you need conditional logic, data transformation (reformatting dates, splitting text, math operations), or multi-path workflows. Make has a steeper learning curve but is dramatically more capable at no cost.
Free tier best uses:
- Gmail → Parse email → Extract data → Sheets + Slack notification
- Webhook → Transform data → Multiple app destinations
- Scheduled data pulls from APIs → Google Sheets reporting
n8n — Self-Hosted, Truly Free
n8n (pronounced "n-8-n" or "nodemation") is an open-source automation platform you run on your own server. Because it's self-hosted, there are no usage limits — you can run unlimited workflows with unlimited operations. The trade-off is setup complexity: you need to deploy it to a server (AWS, DigitalOcean, a Raspberry Pi, or a VPS).
For technical users comfortable with basic server administration, n8n on a $5/month VPS is the most cost-effective automation infrastructure available. It supports 350+ integrations and handles all the workflow types that Make and Zapier support, with custom JavaScript nodes for any logic they can't handle out of the box.
n8n also introduced AI agent nodes in 2025 that can make LLM-powered decisions in your workflow — useful for categorizing emails, generating responses, or processing unstructured data.
Google Apps Script — Free Automation for Workspace
If you live in Google Workspace (Gmail, Sheets, Docs, Drive, Calendar), Google Apps Script is a free JavaScript-based scripting platform built directly into Google services. No server required — scripts run on Google's infrastructure.
Apps Script runs on a schedule (e.g., every hour, every day at 9am) or triggered by events (form submission, email received, spreadsheet edited). The free tier allows scripts to run up to 6 minutes per execution and 90 minutes per day total — enough for most use cases.
Practical Apps Script automations:
- Daily email digest of all unread emails matching a label
- Auto-format and validate data entered into a Google Sheet
- Generate a weekly report document from Sheets data
- Send automated birthday or follow-up emails from Sheets
- Bulk rename files in Google Drive based on spreadsheet data
Apps Script requires basic JavaScript knowledge to write from scratch, but Google's documentation includes templates for all common patterns. An LLM like Claude or ChatGPT can write complete Apps Script functions from a plain-English description of what you want to do.
Automation Examples You Can Set Up Today
Here are five concrete automations, each takeable under 30 minutes to set up:
1. Email-to-Spreadsheet logger (Zapier/Make, free): Every time a Gmail email with a specific label arrives, extract the sender, subject, date, and body summary and add a row to a Google Sheet. Useful for tracking client inquiries, job applications, or newsletter responses.
2. New file compression workflow (Make + API): When a new image is added to a specific Dropbox folder, send it to a compression API and save the compressed version to a "web-ready" subfolder. Eliminates manual compression for content pipelines.
3. Weekly cleanup report (Apps Script): Every Friday at 4pm, a script runs through a Google Sheet of tasks, identifies all items marked "done," moves them to a "Completed" archive sheet, and emails you a summary. Automatic weekly cleanup with zero manual effort.
4. Form-to-CRM automation (Zapier/Make, free): When a Typeform or Google Form is submitted, automatically create a contact in your CRM (HubSpot free tier, Airtable, or a Sheets database) and send the submitter a confirmation email.
5. Social media post scheduling (Buffer free tier): Rather than custom automation, Buffer's free tier (3 social accounts, 10 scheduled posts) handles social scheduling — combine with a content calendar in Sheets and a Make automation to pull from the calendar and schedule posts automatically.
The best starting point: pick the task you do most often that matches the "rule-based + digital trigger + consistent output" criteria above, and build one automation for it. The first successful automation makes the second much easier.