Skip to content

Commit 2327844

Browse files
committed
add child workflow id to the workflow block outputs
1 parent 12400d5 commit 2327844

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

apps/sim/blocks/blocks/workflow.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ export const WorkflowBlock: BlockConfig = {
4242
outputs: {
4343
success: { type: 'boolean', description: 'Execution success status' },
4444
childWorkflowName: { type: 'string', description: 'Child workflow name' },
45+
childWorkflowId: { type: 'string', description: 'Child workflow ID' },
4546
result: { type: 'json', description: 'Workflow execution result' },
4647
error: { type: 'string', description: 'Error message' },
4748
childTraceSpans: {

apps/sim/blocks/blocks/workflow_input.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ export const WorkflowInputBlock: BlockConfig = {
4141
outputs: {
4242
success: { type: 'boolean', description: 'Execution success status' },
4343
childWorkflowName: { type: 'string', description: 'Child workflow name' },
44+
childWorkflowId: { type: 'string', description: 'Child workflow ID' },
4445
result: { type: 'json', description: 'Workflow execution result' },
4546
error: { type: 'string', description: 'Error message' },
4647
childTraceSpans: {

0 commit comments

Comments
 (0)