🔓 Unlock all 10,000+ workflows & prompts free Join Newsletter →
✅ Full access unlocked — explore all 10,000 AI workflow and prompt templates Browse Templates →
Home n8n Workflow
January 22, 2026

Google Calendar + Google Docs, LinkedIn drafts ready

Lisa Granqvist Partner Workflow Automation Expert

You finish a great call, you know there were 2 or 3 quotable moments… and then the transcript disappears into a folder, your notes are messy, and LinkedIn stays quiet for another week.

LinkedIn draft automation is a relief for coaches who run back-to-back sessions, for consultants trying to stay visible between projects, and for marketing leads who need consistent thought leadership without begging for “just one more post.”

This workflow turns scheduled meetings into polished LinkedIn drafts in Google Docs, then emails you review links so publishing becomes a quick decision, not an afternoon project.

How This Automation Works

See how this solves the problem:

n8n Workflow Template: Google Calendar + Google Docs, LinkedIn drafts ready

The Challenge: Turning calls into posts (without losing the good parts)

Meeting transcripts are full of real language, real objections, and real lessons. That’s exactly what performs on LinkedIn. But the moment a call ends, you’re back in delivery mode: follow-ups, admin, another meeting. So the “I’ll write that later” promise turns into a graveyard of half-saved transcripts, scattered notes, and drafts that never get finished. Honestly, it’s not a motivation problem. It’s a workflow problem.

The friction compounds. Here’s where it breaks down most teams.

  • You spend about an hour hunting for the right transcript, then still second-guess what mattered most.
  • Drafts start from a blank page, which means you rewrite what you already said on the call.
  • Brand voice gets inconsistent because every post is “made from scratch” in a rush.
  • Review and approval turns into a thread of links and screenshots that nobody wants to search later.

The Fix: Calendar-triggered transcripts to LinkedIn drafts in Google Docs

This n8n workflow watches your Google Calendar for the meetings you care about (like coaching calls, sales debriefs, client check-ins). When a matching event ends, it waits for completion and then emails you a simple request to paste in the transcript and choose what kind of post you want. From there, AI analyzes the transcript using your saved brand guidelines, pulls out the strongest insights, and generates a LinkedIn-ready draft. Finally, it creates a neatly organized Google Drive folder and two Google Docs: one with the transcript for reference, and one with the finished post you can edit and publish.

The workflow begins with a calendar event trigger and a keyword filter. After you provide the transcript, it routes to the right generator (personal post or company post), maps the fields, builds the docs, then sends Gmail review links so you can approve fast.

What Changes: Before vs. After

Real-World Impact

Say you do 4 client calls a week and you want 2 LinkedIn posts from them. Manually, it’s easy to burn about 45 minutes per post: finding the transcript, pulling highlights, drafting, and formatting (so roughly 1.5 hours a week). With this workflow, the calendar trigger handles timing, you paste the transcript when prompted (about 5 minutes), and you get Google Docs links back for quick edits. For most people, that’s about an hour back every week, plus far fewer “missed idea” moments.

Requirements

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Google Calendar for detecting when meetings end
  • Gmail to request transcripts and send review links
  • Google Drive + Google Docs for organized draft storage
  • LangChain provider API key (get it from your LLM provider dashboard)

Skill level: Intermediate. You’ll be editing filters, prompts, and Google connections, but you won’t be writing code.

Need help implementing this? Talk to an automation expert (free 15-minute consultation).

The Workflow Flow

Your calendar ends a matching meeting. Google Calendar triggers the workflow, then a keyword filter keeps it focused on the calls that should become content (not every internal sync).

A short delay makes timing reliable. The workflow waits until the event is truly finished, then sends a Gmail message asking for the transcript and a post type preference.

AI turns raw language into a usable draft. Based on your selection, n8n routes to the personal or company generator. Your stored brand guidelines (memory buffer) shape the tone so the output sounds like you wrote it.

Docs are created, filled, and sent to you. n8n generates a Drive folder, builds two Google Docs (transcript + content), writes the text into each, then emails you the review links.

You can easily modify the calendar keyword filter to target different meeting types based on your needs. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Calendar Event Trigger

Set the workflow to watch for meeting starts, filter relevant events, and wait until the meeting ends before requesting a transcript.

  1. Add and open Calendar Event Trigger, then set Trigger On to eventStarted and confirm the calendar selection.
  2. In Filter Event Keywords, set the condition to check Summary with ={{ $('Calendar Event Trigger').item.json.summary }} contains key words.
  3. In Delay Until Event Ends, set Resume to specificTime and Date Time to ={{ $('Filter Event Keywords').item.json.end.dateTime }}.
  4. Confirm the flow from Calendar Event TriggerFilter Event KeywordsDelay Until Event Ends.

Tip: If events are skipped, double-check the keyword filter in Filter Event Keywords and your calendar selection in Calendar Event Trigger.

Step 2: Connect Google Workspace

Provide the required Google credentials for Calendar, Gmail, Drive, and Docs so the workflow can send emails and create documents.

  1. Credential Required: Connect your Google Calendar OAuth2 credentials in Calendar Event Trigger.
  2. Credential Required: Connect your Gmail OAuth2 credentials in Request Transcript Email and Send Content Links.
  3. Credential Required: Connect your Google Drive OAuth2 credentials in Generate Drive Folder.
  4. Credential Required: Connect your Google Docs OAuth2 credentials in Build Content Doc, Write Content Doc, Build Transcript Doc, and Write Transcript Doc.

⚠️ Common Pitfall: The Google Docs nodes require access to the same Drive as Generate Drive Folder. Mismatched accounts can cause document creation failures.

Step 3: Set Up AI Post Generation

Configure the AI agents, memory buffers, and structured parsers to generate LinkedIn posts based on the transcript response.

  1. In Request Transcript Email, keep Operation as sendAndWait and Response Type as customForm, then verify the form fields (Meeting Transcript, Post Type, Tone of Voice, Additional Instructions).
  2. In Route by Post Type, keep the two rules that compare ={{ $json.data['Post Type'] }} to Personal LinkedIn Post and Company LinkedIn Post.
  3. Configure Personal Post Generator with the provided prompt and ensure it uses the input expressions like {{ $json.data['Meeting Transcript'] }} and {{ $json.data['Tone of Voice'] }}.
  4. Configure Company Post Generator with the provided prompt and ensure it uses the same input expressions for transcript, post type, and tone.
  5. Keep Context Memory Buffer connected to Personal Post Generator, and Company Memory Buffer connected to Company Post Generator.
  6. Keep Structured Result Parser connected to Personal Post Generator and Company Result Parser connected to Company Post Generator as output parsers.

Credential Required: Connect your AI model credentials in Personal Post Generator and Company Post Generator. The memory and parser sub-nodes (Context Memory Buffer, Structured Result Parser, Company Memory Buffer, Company Result Parser) inherit credentials from the parent agent, so add credentials to the agent nodes, not the sub-nodes.

Step 4: Configure Output and Document Actions

Map AI outputs to fields, create a Drive folder, build the documents, write content, and send the final links.

  1. In Map Post Fields, set post_title to ={{ $json.output.post_title }} and post_content to ={{ $json.output.post_content }}.
  2. In Generate Drive Folder, keep Resource as folder and set Name to = (or replace with a meaningful name).
  3. In Build Content Doc, set Title to ={{ $('Map Post Fields').item.json.post_title }} and Folder ID to ={{ $('Generate Drive Folder').item.json.id }}.
  4. In Write Content Doc, set Operation to update, Document URL to ={{ $('Build Content Doc').item.json.id }}, and insert content with ={{ $('Map Post Fields').item.json.post_content }}.
  5. In Build Transcript Doc, set Title to =Coaching's Transcript and Folder ID to ={{ $('Generate Drive Folder').item.json.id }}.
  6. In Write Transcript Doc, set Operation to update, Document URL to ={{ $('Build Transcript Doc').item.json.id }}, and insert transcript text with ={{ $('Request Transcript Email').item.json.data['Meeting Transcript'] }}.
  7. In Send Content Links, keep the message template and verify the document links use {{ $('Build Content Doc').item.json.id }} and {{ $('Build Transcript Doc').item.json.id }}.
  8. Confirm the sequence Map Post FieldsGenerate Drive FolderBuild Content DocWrite Content DocBuild Transcript DocWrite Transcript DocSend Content Links.

Tip: The Flowpast Branding sticky note is informational only and can be left as-is or removed without affecting the workflow.

Step 5: Test and Activate Your Workflow

Run an end-to-end test to ensure the trigger, email reply, AI generation, and document creation work together.

  1. Click Execute Workflow and create a calendar event whose summary contains key words to trigger Calendar Event Trigger.
  2. Wait for Delay Until Event Ends to resume, then confirm the transcript request email is sent from Request Transcript Email.
  3. Reply to the email with the form data, then verify Route by Post Type sends data to either Personal Post Generator or Company Post Generator.
  4. Confirm Send Content Links emails links to the two Google Docs and that both documents contain the generated post and the transcript.
  5. When satisfied, toggle the workflow to Active so it runs automatically for new meetings.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Watch Out For

  • Google Calendar or Gmail credentials can expire or need specific permissions. If things break, check the connected account status inside n8n’s Credentials tab first.
  • If you’re using Wait nodes or external processing, timing varies. Bump up the wait duration if downstream nodes fail because the meeting isn’t fully “ended” yet.
  • Default prompts in AI nodes are generic. Add your brand voice early (in the memory buffer and the generator prompts) or you’ll be editing outputs forever.

Common Questions

How quickly can I implement this LinkedIn draft automation?

About an hour if your Google accounts are already connected.

Can non-technical teams implement this LinkedIn draft automation?

Yes. No coding required, but someone should be comfortable editing prompts and testing with a sample transcript.

Is n8n free to use for this LinkedIn draft automation workflow?

Yes. n8n has a free self-hosted option and a free trial on n8n Cloud. Cloud plans start at $20/month for higher volume. You’ll also need to factor in LangChain/LLM API costs, which vary based on provider and transcript length.

Where can I host n8n to run this automation?

Two options: n8n Cloud (managed, easiest setup) or self-hosting on a VPS. For self-hosting, Hostinger VPS is affordable and handles n8n well. Self-hosting gives you unlimited executions but requires basic server management.

How do I adapt this LinkedIn draft automation solution to my specific challenges?

Start with “Filter Event Keywords” so only the right meetings trigger drafts. Then adjust the prompts in the Personal Post Generator or Company Post Generator to match your format (story post, framework post, punchy take, softer educational tone). You can also swap the “Send Content Links” email copy to match your internal review process, especially if multiple people approve posts.

Why is my Google Calendar connection failing in this workflow?

Usually it’s expired Google credentials or missing permissions on the connected account. Reconnect Google Calendar in n8n, confirm it can read events, then double-check the calendar filter so it’s pointing at the right calendar. If it works sometimes and fails other times, rate limits or shared-team calendars can also be the culprit.

What’s the capacity of this LinkedIn draft automation solution?

Plenty for most small teams: dozens of meetings a week is typical, with the main bottleneck being your AI provider and how long transcripts are.

Is this LinkedIn draft automation better than using Zapier or Make?

Often, yes, because this workflow isn’t just “move text from A to B.” You’re routing by post type, storing brand context, parsing structured outputs, and creating multiple docs in one run, which is where n8n tends to feel more flexible and less paywalled. Zapier or Make can still work if you want a simpler version, like “form submission → draft doc,” and you don’t care about memory-based brand consistency. If you’re posting from both personal and company perspectives, n8n’s branching is a big deal. And if you want to keep costs predictable, self-hosting can help. Talk to an automation expert if you’re not sure which fits.

You already have the raw material for great LinkedIn posts. This workflow just makes sure it doesn’t get lost, and that your next draft shows up while the call is still fresh.

Need Help Setting This Up?

Our automation experts can build and customize this workflow for your specific needs. Free 15-minute consultation—no commitment required.

Lisa Granqvist

Workflow Automation Expert

Expert in workflow automation and no-code tools.

×

Use template

Get instant access to this n8n workflow Json file

💬
Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Launch login modal Launch register modal