Team working on automation ๐Ÿ”ง Tutorial

How to Build Your First Automated Workflow with Make

April 24, 2026 ยท 10 min read

๐Ÿค” What Is Make?

Make (formerly Integromat) is a visual workflow automation platform that connects your apps and automates repetitive tasks. Think of it as a robot assistant that watches for events and responds automatically. โšก

With Make, you can:

Make offers 1,000 free operations per month โ€” more than enough to build your first few workflows.

๐Ÿ†• Step 1: Create Your Account

  1. Go to make.com and click "Get started free"
  2. Sign up with email or Google SSO
  3. Verify your email address
  4. You'll land on the dashboard โ€” click "Create a new scenario"

No credit card required for the free tier. ๐ŸŽ‰

๐Ÿ“ Step 2: Create a New Scenario

In Make, a workflow is called a "scenario." A scenario consists of modules connected by lines:

ConceptWhat It MeansExample
๐ŸŸข TriggerThe event that starts everything"New row in Google Sheets"
โš™๏ธ ActionSomething Make does in response"Send an email"
๐Ÿ”€ RouterSplits the flow into branches"If amount > $100, go path A"
๐Ÿ” FilterConditions between modules"Only if status = 'active'"

Click the big "+" button in the center of the canvas to add your first module.

๐ŸŸข Step 3: Set Up the Trigger

The trigger is always the first module. Let's build a practical example: automatically saving new Google Form responses to a Slack channel.

  1. Click "+" and search for "Google Sheets"
  2. Select "Watch New Rows"
  3. Connect your Google account (Make will ask for permissions)
  4. Select the spreadsheet and sheet that receives form responses
  5. Set the interval to "Every 15 minutes" (or faster if needed)

Make will now check for new rows every 15 minutes. When it finds one, the scenario fires. ๐Ÿ”ฅ

โš™๏ธ Step 4: Add Actions

  1. Click the "+" that appears to the right of the Google Sheets module
  2. Search for "Slack"
  3. Select "Create a Message"
  4. Connect your Slack workspace
  5. Choose the channel (e.g., #new-responses)
  6. Map the fields from your spreadsheet into the message:
    • Name: {{1.name}}
    • Email: {{1.email}}
    • Message: {{1.message}}

The double-curly-brace syntax pulls data from the previous module โ€” Make shows you a visual picker for available fields. No code required. ๐Ÿ‘Œ

๐Ÿ”€ Step 5: Add Filters and Logic

Click the line between two modules to add a filter. For example:

For more complex logic, add a Router module to split into multiple paths. Each path can have its own filter and actions โ€” like routing urgent requests to one channel and regular requests to another.

โœ… Step 6: Test and Activate

  1. Click "Run once" at the bottom-left to test with real data
  2. Check the green checkmarks on each module โ€” green = success, red = error โœ…
  3. Click any module to see the data that passed through it
  4. If everything looks good, toggle "Scheduling" to ON
  5. Your scenario is now live and running automatically ๐Ÿš€
๐Ÿ’ก Start with "Run once" testing before activating. This prevents accidental spam messages or duplicate data if something is misconfigured.

๐Ÿ—๏ธ 5 Starter Workflows to Copy

1. ๐Ÿ“ง New Lead โ†’ CRM + Welcome Email

Trigger: New Typeform submission โ†’ Action 1: Create contact in HubSpot โ†’ Action 2: Send welcome email via Gmail

2. ๐Ÿ“ฑ Social Media Auto-Poster

Trigger: New WordPress post โ†’ Action 1: Post to Twitter โ†’ Action 2: Post to LinkedIn โ†’ Action 3: Send to Buffer queue

3. ๐Ÿ’ฐ Invoice Processor

Trigger: New email with PDF attachment โ†’ Action 1: Extract data with AI โ†’ Action 2: Create row in accounting spreadsheet โ†’ Action 3: Notify #finance in Slack

4. ๐ŸŽซ Support Ticket Router

Trigger: New support email โ†’ Router: Urgent โ†’ Slack DM to on-call | Normal โ†’ Create Trello card | Billing โ†’ Forward to finance

5. ๐Ÿ“Š Weekly Report Generator

Trigger: Schedule (every Monday 9am) โ†’ Action 1: Pull data from Google Analytics โ†’ Action 2: Generate summary with ChatGPT โ†’ Action 3: Send report via email

๐Ÿง™ Pro Tips

For a deeper comparison of Make vs. other platforms, read our workflow automation platform comparison. โšก

๐ŸŽฏ Automation isn't about replacing humans โ€” it's about freeing them to do work that actually matters. Start small, automate one thing, then build from there.