Condition for a specific flow of an execution.
yaml
type: "io.kestra.plugin.core.condition.ExecutionFlow"Examples
Trigger condition to execute the flow based on execution of another flow.
yaml
id: flow_condition_executionflow
namespace: company.team
tasks:
  - id: hello
    type: io.kestra.plugin.core.log.Log
    message: "This flow will execute when flow `flow_a` of namespace `company.team` enters RUNNING state."
triggers:
  - id: flow_trigger
    type: io.kestra.plugin.core.trigger.Flow
    conditions:
      - type: io.kestra.plugin.core.condition.ExecutionFlow
        flowId: flow_a
        namespace: company.team
    states:
      - RUNNING
Properties
flowId *Requiredstring
The flow id.
namespace *Requiredstring
The namespace of the flow.
