
Core Plugins and tasks ExecutionFlow
CertifiedMatch events from a specific flow.
Core Plugins and tasks ExecutionFlow
Certified
Match events from a specific flow.
Passes only when the triggering execution belongs to the given Namespace and Flow ID.
Pair with the Flow trigger to react to a single upstream flow; for broader namespace matching use ExecutionNamespace.
yaml
type: io.kestra.plugin.core.condition.ExecutionFlowExamples
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 Flow Namespace