Is it possible to extract an action status from any of the previous actions completed?
What I would like to do is set a variable only once a scope action has failed, however, I currently have several branches,
Typically I would do this by creating one parallel branch and then having an error handling loop,
But since you can't have indented parallel branches that approach goes out the window (as far as I know anyway)...
So my question is, would it be possible to set a variable based on a previous action's result i.e "failed", "succeeded" or "canceled"?
Or similar to how in python you can "Try" or even pass on a loop should a condition fail, you can still return variables out of the loop, Im applying that logic but am not sure how to proceed.
Appreciate any feedback on this!
Image of my flow:

