Skip to main content

Execute Workflow

Use this action when you want one workflow or agent action to run another workflow manually.

Best for

  • Reusing a common workflow from multiple places
  • Breaking a large automation into smaller reusable workflows
  • Triggering a workflow only when a previous step decides it should run

Main fields

FieldWhat it does
WorkflowSelects the workflow to run
ArgumentsSends input values into that workflow

What later steps can use

This action stores the child workflow result inside step(N).data.

The exact shape depends on the workflow you call, so use debugging to confirm what is available before you reference it in later steps.

Tips

  • Use clear input names in the child workflow so the handoff is easy to understand.
  • This works best with workflows designed for manual execution.
  • Keep reusable workflows focused on one job instead of mixing many unrelated tasks together.