acoustic-lamp-86528
01/09/2025, 11:58 PMtrigger_on_finish
decorator. I have two flows FlowA and FlowB that are independent of one another. I have another flow FlowC that I would like to be automatically triggered if either of FlowA OR FlowB finish. Currently, I don't see a way to do this as trigger_on_finish(flows=["FlowA", "FlowB"])
implies that FlowA AND FlowB must finish in order to trigger FlowC. Any tips on how I can make it such that either flow can trigger FlowC?ancient-application-36103
01/10/2025, 12:23 AMtrigger_on_finish(flows=["FlowA", "FlowB"])
implies AND. we took the decision to not support OR since an OR is equivalent to two deployments where one depends on FlowA
and the other on FlowB
ancient-application-36103
01/10/2025, 12:23 AMpython flow.py argo-workflows --name foo create
and ``python flow.py argo-workflows --name bar create`` can help you create multiple deployments out of the same flowancient-application-36103
01/10/2025, 12:25 AMtrigger_on_finish
acoustic-lamp-86528
01/10/2025, 1:12 AMfancy-vr-43603
03/01/2025, 10:39 PM