Skip to main content

Detect holiday conflicts & suggest meeting reschedules with Google Calendar and Slack

Workflow preview

Workflow preview
100%
Detect holiday conflicts & suggest meeting reschedules with Google Calendar and Slack preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

Who’s it for Remote and distributed teams that schedule across time zones and want to avoid meetings landing on public holidays—PMs, CS/AM teams, and ops leads who own cross regional calendars. Wha...

Best for

  • Personal Productivity automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.scheduletrigger, n8n-nodes-base.set, n8n-nodes-base.code, n8n-nodes-base.googlecalendar, n8n-nodes-base.if, n8n-nodes-base.slack, n8n-nodes-base.splitinbatches, n8n-nodes-base.httprequest

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Takuya Ojima.

Original n8n.io source

1.1 Workflow description

Title
Detect holiday conflicts & suggest meeting reschedules with Google Calendar and Slack
Workflow name
Detect holiday conflicts & suggest meeting reschedules with Google Calendar and Slack

Who’s it for

Remote and distributed teams that schedule across time zones and want to avoid meetings landing on public holidays—PMs, CS/AM teams, and ops leads who own cross-regional calendars.

What it does / How it works

The workflow checks next week’s Google Calendar events, compares event dates against public holidays for selected country codes, and produces a single Slack digest with any conflicts plus suggested alternative dates. Core steps: Workflow Configuration (Set) → Fetch Public Holidays (via a public holiday API such as Calendarific/Nager.Date) → Get Next Week Calendar Events (Google Calendar) → Detect Holiday Conflicts (compare dates) → Generate Reschedule Suggestions (find nearest business day that isn’t a holiday/weekend) → Format Slack Digest → Post Slack Digest.

How to set up

Open Workflow Configuration (Set) and edit: countryCodes, calendarId, slackChannel, nextWeekStart, nextWeekEnd.

Connect your own Google Calendar and Slack credentials in n8n (no hardcoded keys).

(Optional) Adjust the Trigger to run daily or only on Mondays.

Requirements

n8n (Cloud or self-hosted)

Google Calendar read access to the target calendar

Slack app with permission to post to the chosen channel

A public-holiday API (no secrets needed for Nager.Date; Calendarific requires an API key)

How to customize the workflow

Time window: Change nextWeekStart/End to scan a different period.

Holiday sources: Add or swap APIs; merge multiple regions.

Suggestion logic: Tweak the look-ahead window or rules (e.g., skip Fridays).

Output: Post per-calendar messages, DM owners, or create tentative reschedule events automatically.

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Daily Check

Type / Role
n8n-nodes-base.scheduleTrigger - scheduleTrigger
Config choices
Version 1.2

Block 2 - Workflow Configuration

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 3 - Merge and Filter Next Week Holidays

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 4 - Get Next Week Calendar Events

Type / Role
n8n-nodes-base.googleCalendar - googleCalendar
Config choices
Version 1.3

Block 5 - Detect Holiday Conflicts

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 6 - Check If Conflicts Found

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.2

Block 7 - Generate Reschedule Suggestions

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 8 - Format Slack Digest

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 9 - Post Slack Digest

Type / Role
n8n-nodes-base.slack - slack
Config choices
Version 2.3

Block 10 - Loop Over Items

Type / Role
n8n-nodes-base.splitInBatches - splitInBatches
Config choices
Version 3

Block 11 - Fetch Public Holidays

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 12 - Note: Daily Check

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 13 - Note: Workflow Configuration

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 14 - Note: Merge and Filter Next Week Holidays

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 15 - Note: Get Next Week Calendar Events

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 16 - Note: Detect Holiday Conflicts

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 17 - Note: Check If Conflicts Found

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 18 - Note: Generate Reschedule Suggestions

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 19 - Note: Format Slack Digest

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 20 - Note: Post Slack Digest

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 21 - Note: Loop Over Items

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 22 - Note: Fetch Public Holidays

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 23 - Template Overview

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

3. Summary Table

Workflow Detect holiday conflicts & suggest meeting reschedules with Google Calendar and Slack
Complexity advanced
Nodes 23
Categories Personal Productivity
Author Takuya Ojima
Published 25 Oct 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/10144/10144.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Detect holiday conflicts & suggest meeting reschedules with Google Calendar and Slack do?

Who’s it for Remote and distributed teams that schedule across time zones and want to avoid meetings landing on public holidays—PMs, CS/AM teams, and ops leads who own cross regional calendars. Wha...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Personal Productivity use case.