
meta_description: “monday.com template boards lose automations when duplicated. Email, Slack, and cross-board automations vanish. Learn why and how BoardBridge clones automation workflows with board ID remapping.”
You spent three hours building the perfect template board. Columns, groups, views — all dialed in. Then you set up 15 automations: status changes trigger emails, button clicks send forms, cross-board connections create items. You added a Gmail integration for client notifications and a Slack integration for team updates.
Everything works beautifully. You save it as a template.
Three weeks later, you duplicate the template for a new project. The board structure looks great — columns, groups, all there. You open the Automations panel.
Only 9 of your 15 automations carried over. The Gmail integration: gone. The Slack automation: gone. The cross-board triggers that create items on other boards: gone.
Welcome to monday.com’s template duplication problem.
Here’s what teams expect when duplicating a template board:
What monday.com actually delivers:
Monday.com’s official documentation lists exactly what does NOT carry over when boards are duplicated: Source
Automations that are lost:
What DOES carry over:
The result: Every duplicated board requires 10-30 minutes of manual automation rebuilding. At scale (50+ projects/year), this is hundreds of hours of repeated setup work.
Thread: Duplicate board not carrying ALL automations to the new duplicated board — September 2021 – June 2024 (20+ replies, 3+ years unresolved) Source
“All recipes (automations) that has integration with ’email’…are not carrying to new duplicated board.” — Roni Raimundo, September 17, 2021
The user’s template had 44 automations. The duplicated board had 39 automations — 5 automations silently dropped.
Multiple organizations confirmed this as a “HUGE time saver” if resolved, citing the risk of human error when manually recreating dozens of automations.
No monday.com staff response in this thread as of June 2024.
Thread: Email Automations Don’t Duplicate When the Board Duplicates — June 2022 – June 2024 (11 replies)
“I have a templated board for project managers and am now having to rebuild 10 automations on each PM’s board to ensure it works correctly.” — Jeanette, February 22, 2023
“so annoying to have to recreate the entire automation” — dk_NFroehlich, June 10, 2022
“one of the main reasons to make a ‘template’ is that custom automations with emails or slack notifications are fiddly to reproduce.” — Louise McKay, March 6, 2023
“Rewriting the all the automations 200 times is incredibly tedious.” — Aprel Dobson, February 9, 2024
Monday.com staff (Juliette, June 2024) encouraged voting on feature requests to influence product priorities. No fix offered.
Thread: Board duplication not duplicating automations — January – August 2023 (8 replies)
“I’ve set up a board with a bunch of automations…but when I duplicate that board, none of the automations are being carried across” — maddiecoachbright, January 23, 2023
“Everything, including the automations, would duplicate when I would duplicate a board. As of yesterday, none of the automations are duplicating and on about half of my boards the automations spontaneously disappeared.” — scunningham, February 24, 2023
Monday.com staff (mark.anley) acknowledged automations “should be carried over when boards are duplicated” and recommended contacting support — suggesting it was a bug, not a design choice. Yet the problem persists.
Thread: Duplicate integrations when duplicating a board — April 2020 – present (5+ years unresolved, 20+ replies)
“when I’m duplicating a board that already has some automations & integrations set up, only the automations get duplicated [not integrations]” — pszymanska (Patrycja), April 21, 2020
“templates are kind of useless if they don’t duplicate integrations…it’s a major pain that we can’t make use of the integrations feature.” — JessS, August 20, 2020
“I have a webhook integration…it is not copying over. Would really love to see this at least be a ghost option!” — jailynnhoops, November 18, 2022
Monday.com staff (ErickE) officially explained the root cause:
Integrations are “mapped directly to the Board ID” — ErickE-monday.com, May 14, 2020
This means integrations are fundamentally hardcoded to specific board IDs and cannot follow boards when duplicated. It’s a core architectural limitation, not a bug.
Auto-Create Project Folders from CRM
Status change → folder + boards + rosters + webhooks + automations. All automatic.
Monday.com automations reference boards by their unique ID (e.g., board_id: 123456789). When you build an automation that says “when status changes to Done, create an item on the Production board,” monday.com stores that as:
“ Trigger: status_change on board 123456789 Action: create_item on board 987654321 “
When you duplicate the board, monday.com creates a new board with a new ID (e.g., 234567890). Source The automation is copied, but it still says:
“ Trigger: status_change on board 234567890 (NEW board) Action: create_item on board 987654321 (ORIGINAL Production board) “
The automation now points to the wrong board. It creates items on the original template Production board, not the new project’s Production board.
For email and Slack integrations, the problem is worse: they don’t copy at all. Monday.com strips them entirely during duplication. Source
BoardBridge takes a fundamentally different approach: workflow rules are stored in an external database, not embedded in monday.com’s automation engine.
When you set up a workflow rule (e.g., “when status changes to Confirmed, send email”), BoardBridge stores it as:
“json { "trigger": "status_change", "boardId": "template_overview_board", "column": "confirmation_status", "value": "Confirmed", "action": "send_email", "emailTemplateId": "band_confirmation_email", "recipientColumnId": "email_column" } “
Notice: The board is referenced as "template_overview_board" — a logical name, not a monday.com board ID.
After all template boards are duplicated, BoardBridge’s automation cloning workflow runs:
Step 1: Fetch All Template Workflow Rules
Query the database for all workflow rules associated with the template boards:
Step 2: Build a Board ID Mapping
Create a lookup table that maps old board IDs to new board IDs:
“ template_overview_board (ID: 123456) → project_overview_board (ID: 789012) template_production_board (ID: 234567) → project_production_board (ID: 890123) template_travel_board (ID: 345678) → project_travel_board (ID: 901234) “
Step 3: Clone Each Workflow Rule with Board ID Remapping
For each workflow rule, create a new copy where every board ID reference is replaced:
Original rule (template): “json { "trigger": "button_click", "boardId": "123456", "action": "create_item", "targetBoardId": "234567" } “
Cloned rule (project): “json { "trigger": "button_click", "boardId": "789012", // NEW overview board "action": "create_item", "targetBoardId": "890123" // NEW production board } “
Step 4: Register Webhooks on the New Boards
For each new project board, register a webhook with monday.com so the system receives real-time notifications when triggers fire (status changes, button clicks, column updates).
Step 5: Activate All Cloned Rules
Mark all cloned workflow rules as active. The new project boards are now fully wired with all the same automation logic as the templates.
Every workflow rule from your template boards is replicated on the new project boards:
Zero manual automation rebuilding.
See How BoardBridge Handles Board Management
Book a free demo to see BoardBridge solve this exact problem — live, with your data.
Template boards include:
Total: 45 workflow rules
When a new event project is created:
Manual effort: 0 minutes
With native monday.com automations: 30-45 minutes to rebuild 45 automations by hand, plus the risk of missing one or misconfiguring a cross-board reference.
BoardBridge clones these workflow rule types:
Status Change Triggers:
Button Click Triggers:
Cross-Board Triggers:
Conditional Logic:
Email Rules:
Native monday.com automations are NOT cloned. If you’ve built automations in monday.com’s automation center (outside of BoardBridge), those follow monday.com’s rules: most don’t carry over, and the ones that do still point to the original boards.
Migration required. To use BoardBridge’s automation cloning, you need to migrate your workflow logic from monday.com’s automation center to BoardBridge’s workflow rule system. This is a one-time setup process per template board.
Webhooks are required. BoardBridge monitors boards via webhooks. If webhooks are disabled in your monday.com workspace (Enterprise security policy), the system cannot receive real-time triggers. Webhook registration happens automatically per board when projects are created.
Need Help With Your monday.com Setup?
TaskRhino has implemented monday.com for 110+ teams. Get a free consultation.
Losing your workflow rules on every board duplication is expensive. At 50 projects/year with 15-30 automations per project, that’s 375-750 hours per year of manual automation rebuilding (and the risk of missing one).
BoardBridge preserves all your workflow logic — email automations, cross-board triggers, conditional logic — and clones them with automatic board ID remapping. Your new boards are fully wired and ready to work the moment they’re created.
Ready to eliminate the automation rebuild bottleneck? Book a free 30-minute demo: https://calendly.com/rp-spaceo/call-with-rakesh-est-timezone
Editor's Choice

monday.com Automation Safety: Preventing Duplicate Items

monday.com No Dry-Run Mode for Automations

monday.com Automation Test Sandbox Mode