Invoke Workflow
Invoke Workflow: Triggers another workflow using data from the current workflow run. Generally used when you have to notify different recipients at different stages of the workflow.
Human-readable name of the node
"Escalate to the manager"
"invokeworkflow"Slug of the workflow to invoke.
1 - 255^[a-z0-9-_]+$Where to pick the recipient from for the invoke-workflow payload.
recipient: Use the recipient of the current workflow run.
actor: Use the actor who triggered the current workflow run.
expression: Use a JSONNET expression to derive the recipient at runtime using data from the current workflow run.
recipient, actor, expression Description of what this node does
Where to pick the actor from for the invoke-workflow payload.
recipient: Use the recipient of the current workflow run.
actor: Use the actor who triggered the current workflow run.
expression: Use a JSONNET expression to derive the actor at runtime using data from the current workflow run.
null, recipient, actor, expression JSONNET expression to derive the actor at runtime for the invoked workflow. Pass when actor_selection is 'expression'. Eg. data["$recipient"].id
1JSONNET expression to derive the recipient at runtime for the invoked workflow. Pass when recipient_selection is 'expression'. Eg. data["$recipient"].manager_id
1JSONNET expression to derive the data field for the invoke-workflow payload.
Whether the current workflow-run data should be passed as payload of the invoked workflow.