Hi! I am starting with argo events. The main use c...
# ask-metaflow
f
Hi! I am starting with argo events. The main use case for me at the moment is to be able to trigger flows based on another flows (
trigger_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
Copy code
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?
1