Stocky has shut down. Recover what you can and replace it free
Pricing verified: 29 August 2026
Published: 25 March 2026 · Updated: 4 September 2026 · 14 min read · Automation

When to Upgrade from Free Make.com to Google Workspace — Shopify Operator's Guide 2026

Upgrade from the free Shopify automation stack when you hit a real ceiling, not on principle. The three signals are Make.com credits exhausted before month end, Apps Script runs exceeding six minutes, and daily trigger runtime running out. What you buy is quota headroom, not features, so the decision follows the symptom rather than the price.

The free stack — Make.com free + Gmail + Google Sheets on a consumer account — covers most Shopify stores indefinitely. The upgrade to Make.com Core and Google Workspace makes sense at specific trigger points, and not before. This guide covers the 7 signals, what the upgrade actually changes, and how to migrate with zero downtime.

The Free Stack and Its Limits

The free automation stack runs on:

For stores under approximately 200 orders/month on a 5-branch scenario, this covers everything. The limits only become relevant as order volume increases or as you add more complex automations.

The 7 Upgrade Signals

Signal 1 — Make.com operations limit exceeded

You start receiving “Operations limit exceeded” errors in your Make.com scenario history. This means you’ve consumed 1,000 credits in the current calendar month and Make.com has paused the scenario until the next month.

What to do: Upgrade to Make.com Core ($9/month, 10,000 credits). This covers stores up to approximately 2,000 orders/month on the full 5-branch stack.

Before committing, work out whether the overrun is structural or seasonal, because the answer changes what you buy. Sustained growth justifies a permanent upgrade. A single spike does not: a store averaging 50 orders a day that processes 300 on Black Friday burns roughly 1,200 operations that day alone — past the free tier’s monthly ceiling inside twenty-four hours — and then drops back to normal. That is an October upgrade and a January downgrade, not a plan change. The BFCM automation checklist sets out the full pre-season sequence and the deadline each piece has to be live by.

Signal 2 — Google Apps Script timing out mid-run

If you have any automations using Google Apps Script (Autocrat, custom Sheets scripts, document generation), and they’re stopping mid-execution with “Exceeded maximum execution time”, you’ve hit the 6-minute consumer ceiling.

What to do: Upgrading to Google Workspace will not fix this — the 6-minute per-execution ceiling is identical on consumer and Workspace accounts. The real fixes are structural: batch your reads and writes so each run does less work, split the job into chunks that each finish inside 6 minutes (saving progress with PropertiesService between runs), or move the heavy work off Apps Script entirely onto Make.com, which has no per-execution time limit. See the Scalable Google Sheets Automation guide for the batching and chunking patterns.

Signal 3 — Scripts working in the morning but failing in the afternoon

This is the daily trigger-runtime quota signal. Consumer accounts get 90 minutes of trigger-driven Apps Script runtime per day (manual runs are not counted). Once exhausted, trigger-driven scripts stop until the quota resets 24 hours after the first request of the day — a rolling window, not a fixed midnight cutoff.

What to do: Upgrade to Google Workspace. Workspace accounts get 6 hours of daily runtime — 4× more headroom. This symptom almost always means you’ve outgrown the consumer quota, not that your scripts have bugs.

Signal 4 — Document generation becoming unreliable

If you use Autocrat or any document generation workflow and documents are being skipped, partially generated, or failing on busy days, you’ve hit the 250 document creates per day limit (consumer) or the document service call rate limit.

What to do: Upgrade to Google Workspace (1,500 document creates/day) or move document generation off Apps Script entirely into a Make.com scenario calling the Google Docs API directly — covered in the Autocrat quota fix guide.

Signal 5 — You need multiple team members accessing automations

Consumer Google accounts are single-user. If a second person needs to edit Make.com scenarios, view Google Sheets dashboards with proper permissions, or access Tidio / other tools from a shared business account, Google Workspace becomes necessary for organisational reasons.

What to do: Upgrade to Google Workspace. Note that it is priced per seat, so a second person is a second full seat, not a marginal add-on — the cost of this signal scales with headcount in a way the other six do not.

Signal 6 — Email deliverability matters for automation-triggered emails

Consumer Gmail accounts have lower sending limits and worse deliverability for business email than Google Workspace accounts. If your Make.com scenarios send transactional emails (order confirmations, shipping notifications, custom triggers), Google Workspace provides better deliverability and a professional sender domain.

What to do: Upgrade to Google Workspace and use your custom domain email (you@yourdomain.com) as the sender for automation-triggered emails.

Signal 7 — You want Google’s 99.9% uptime SLA

Consumer Google accounts have no SLA — if Gmail or Sheets goes down, your automations stop and there’s no obligation on Google’s part. Google Workspace includes a 99.9% uptime SLA with financial credits for downtime.

What to do: Upgrade to Google Workspace if your automations are mission-critical for revenue (server-side tracking, order logging, inventory sync) and you need contractual uptime guarantees.

The Upgrade Decision

The typical upgrade is Make.com Core plus Google Workspace Business Starter for a single user. We quote one of those prices and not the other, deliberately.

Make.com Core is $9/month, verified against Make’s own pricing page on 29 August 2026. Make publishes a readable USD list price, so we can state it and tell you when we last read it.

Google Workspace we hold. Google’s pricing page geo-locks to the country you load it from, and annual and flexible billing differ by roughly 20%, so there is no single figure that is true for every reader — quoting one would mean picking a currency and a billing term on your behalf and not saying so. Check Google’s pricing page from where you actually are, on the billing term you would actually pick. A price we cannot source in the currency we would be quoting is a price we would rather not assert.

This is less of a problem than it sounds, because the number was never what the decision turned on. What you are buying is quota headroom, and that is fixed and checkable:

What this gets you:

The payback calculation:

At 500 orders/month with a 5-branch scenario running server-side tracking, inventory, and P&L reporting:

Against roughly £322/month of recovered time, a two-line subscription bill is not the deciding variable — which is the point. At this volume the upgrade is not a close call, and whatever Google is charging in your region this quarter does not change the answer. If it is a close call for you, that is the signal you have not actually hit a ceiling yet.

Migration — Zero Downtime

Upgrading from consumer Google to Workspace requires migrating your Google account. This can be done without breaking your existing Make.com scenarios.

Step 1 — Create your Google Workspace account

Sign up for Google Workspace Business Starter at workspace.google.com. Verify your domain. Create your primary user (e.g., you@yourdomain.com).

Step 2 — Move Google Sheets to the new account

In your consumer Google account, go to each Sheets file used in your automation stack. Share it with your new Workspace email with Editor access. In the Workspace account, make a copy (File → Make a copy) so the Workspace account owns the file.

Step 3 — Update Make.com connections

In Make.com, go to Connections and reconnect your Google Sheets and Google Drive connections using the new Workspace account credentials. Update the file references in each module to point to the copied files.

Step 4 — Move Google Apps Script projects

In the Workspace account, create new Apps Script projects. Copy the script code from your consumer account. In the Workspace Apps Script project, set up the same triggers (time-based, form submission, etc.).

Step 5 — Test with a live order

Place a test order in Shopify and verify the entire scenario runs correctly: Make.com receives the webhook, all branches execute, Sheets rows are created, and any Apps Script automation runs to completion.

Step 6 — Disable consumer account automations

Once confirmed, delete or disable the triggers in your consumer Apps Script projects. This prevents duplicate automation runs during the transition.

The full migration takes 2–4 hours of active work and causes zero downtime if you keep both accounts running in parallel until you’ve verified the Workspace setup is working correctly.

The Bottom Line

Stay on the free stack until one of the 7 signals appears. When it does, the upgrade (Make.com Core + Google Workspace) is straightforward to justify. The Make.com beginner’s guide covers the initial setup, and the Google Apps Script quota guide covers the specific limits you’ll hit as volume grows.


Get the pre-built Make.com files while you’re on the free tier

The Complete Kit is designed for Make.com’s free tier — four JSON blueprints (CAPI Shield, TikTok CAPI, Stocky Swap, P&L Auto) that run within 1,000 credits/month for most Shopify stores. Import in 60 seconds each. $24 one-time.

Get the Complete Kit — $24 →

Luke Sandelands
Written by Luke Sandelands
Founder, Stack Architect · Shopify Automation Specialist
Developer of StockLog and author of the open-source shopify-capi-validator npm package. Certified in Shopify server-side tracking, Meta CAPI, and Google Apps Script engineering.
Full profile and credentials · Last reviewed

Frequently Asked Questions

How many operations does Make.com give you for free?

Make.com's free plan gives 1,000 credits per month. A 4-5 branch Shopify automation scenario uses approximately 5-6 operations per order. This covers roughly 160-200 orders per month on the full automation stack before needing to upgrade to Make.com Core at $9/month.

What does upgrading to Google Workspace actually change?

It raises Google Apps Script daily quotas, and that is the whole reason to do it for automation. The 6-minute per-execution ceiling is identical on both consumer and Workspace accounts — upgrading does not change it. What Workspace raises is the daily headroom: trigger runtime goes from 90 minutes to 6 hours, UrlFetch calls from 20,000 to 100,000, document creates from 250 to 1,500, and email recipients from 100 to 1,500. Workspace is priced per seat, so a second person is a second full seat rather than a marginal add-on.

Do I need Google Workspace for Make.com to work?

No. Make.com works with any Google account including free Gmail. Google Workspace is only needed when Google Apps Script quota limits are causing automation failures — typically scripts hitting the 6-minute consumer execution ceiling or the 90-minute daily trigger-runtime limit.

Does upgrading to Google Workspace fix Apps Script timeouts?

No. The 6-minute per-execution ceiling is identical on consumer and Workspace accounts, so 'Exceeded maximum execution time' will keep happening after you pay. The fixes are structural: batch reads and writes so each run does less work, split the job into chunks that each finish inside 6 minutes and save progress with PropertiesService between runs, or move the heavy work onto Make.com, which has no per-execution time limit. Upgrading raises daily quotas, not the per-run ceiling.

When should I upgrade Make.com from free to paid?

Upgrade Make.com when you consistently hit the 1,000 credits/month limit. Signs include: scenarios failing with 'operations limit exceeded' errors, having to disable some automation branches to stay within the limit, or processing more than 160-200 orders per month on the full automation stack.