Tri
09/26/2025, 2:06 PMdeployment
that runs Flow A
and then Flow B
. However, I would also like to trigger Flow B
separately without runing Flow A
. Do I need to create a separate deployment for Flow B
?Nate
09/26/2025, 2:18 PM@flow
def parent(inputs):
should_run_a = _derive_should_run_a(inputs)
if should_run_a:
flow_a()
flow_b()
or instead yea you can split out flow_b
to be its own deployment, its mostly up to you on how you want to structure thingsTri
09/26/2025, 2:31 PMNate
09/26/2025, 2:33 PMCurrently I'm creating a separate deployment, but didn't know if that was "anti-pattern"not at all. that's a very common reason to create a deployment sure thing!