https://prefect.io logo
m

Moe

09/13/2023, 7:33 PM
Team, how can I trigger a flow when a separate flow completes? Without using automation. Essentially, I am trying to explicitly set dependencies between flows.
j

Jake Kaplan

09/13/2023, 7:40 PM
If you don't want to use automations you can use state change hooks. Inside of your
on_completion
hook you can call
run_deployment
and trigger another flow
1
upvote 1
m

Moe

09/13/2023, 7:52 PM
Thank you.