fast-pizza-24629
11/28/2023, 1:03 PMtrigger_on_finish
) and so far is good. However, is there a way to run flows without triggering the next ones? let's say I have flow A and B, where B is triggered by A. But sometimes, I would like to trigger A without triggering B. I was planning to add and extra trigger with (ArgoEvent().safe_publish()
) at the end step of A and then add both @trigger_on_finish
and @trigger
to the B flow, but I got
Argo Workflows error:
Argo Workflows doesn't support both @trigger and @trigger_on_finish decorators concurrently yet. Use one or the other for now.
Is there a way I can keep B not to be triggered by A?