Current dag run needs to run if the previous dag run is successful

HI, I have one scenario, where my current DAG run needs to run only if the previous dag run is successful. And it needs to be in wait state until the previous dag run is successful, and also first time dag run is also considerable.

To create a dependency between successive DagRuns, you can try using depends_on_past or wait_for_downstream.

1 Like