I have two separate scenarios:
-
The first one handles lead capture (opt-in);
-
The second one handles form response collection.
Here’s what I need: if the first scenario fails, the second one must automatically stop.
I don’t want to merge the scenarios because not all leads will respond to the form — so keeping them separate is intentional.
The logic is simple:
-
If Scenario 1 throws an error, Scenario 2 should immediately stop running;
-
I’ll manually check the issue, fix it, and then reactivate both scenarios.
Is there any way to create this kind of direct dependency between scenarios in Make, so that the second only runs if the first one completes successfully and has no errors?


