This n8n workflow provides a standardized structure for building and testing sub-workflows in isolation. Its purpose is to help you create robust, reusable, and maintainable automations by enabling you to test the sub-workflow's logic without needing a separate parent workflow.
color
) that your sub-workflow will expect from a parent workflow.Test Input
node (an Edit Fields (Set) node connected to the Manual Trigger) to provide sample data for isolated testing.Combine Input
node (an Edit Fields (Set) node) is the entry point for your sub-workflow's core logic. It should have two inputs: one from the Execute Sub-workflow Trigger
and one from the Test Input
node.Combine Input
node has the 'Include Other Input Fields' option enabled to merge data from both the live and test paths seamlessly.You can read the full blog post that explains this workflow setup in detail here.