From 807583dfffb2dd729d68c9621a6a55ad5333e8e1 Mon Sep 17 00:00:00 2001 From: Lucas Berger Date: Wed, 4 Feb 2026 14:52:44 -0500 Subject: [PATCH] fix(10-06): fix batch actions routing to use sub-workflow - Add exclusion condition to Route Callback rule 4 (isBatch) - Rule now requires isBatch=true AND isBatchExec!=true - Ensures batch execution callbacks route to Handle Batch Exec (output 17) - Prevents bypass to old Build Batch Commands inline path (output 4) --- n8n-workflow.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/n8n-workflow.json b/n8n-workflow.json index 9647a4e..c207419 100644 --- a/n8n-workflow.json +++ b/n8n-workflow.json @@ -883,6 +883,15 @@ "type": "boolean", "operation": "equals" } + }, + { + "id": "not-batch-exec", + "leftValue": "={{ $json.isBatchExec }}", + "rightValue": true, + "operator": { + "type": "boolean", + "operation": "notEquals" + } } ], "combinator": "and"