kestra
kestra copied to clipboard
feat(core): new FlowFilters condition
Part-of: #1543
Example flow:
id: flow-fiters
namespace: company.team
triggers:
- id: flowFilters
type: io.kestra.plugin.core.trigger.Flow
conditions:
- id: flowFilters
type: io.kestra.plugin.core.condition.FlowFilters
upstreamFlows:
- namespace: company.team
flowId: myflow
states: [SUCCESS, WARNING]
- namespace: company.team
flowId: myflow2
states: [SUCCESS]
tasks:
- id: hello
type: io.kestra.plugin.core.log.Log
message: I'm triggered!