kestra icon indicating copy to clipboard operation
kestra copied to clipboard

feat(core): new FlowFilters condition

Open loicmathieu opened this issue 3 months ago • 0 comments

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!

loicmathieu avatar Oct 28 '24 13:10 loicmathieu