Technical Note: [FortiSOAR / Cybersponse Tricks'n'Tips] Execute/Run a Step when previous step Fails
Description
Sometime, a step can be failed due to many reasons, as a temporary solution, we can ignore errors so the playbook will continue run (specially when we have a loop step ).
Be following the below steps we can perform additional step when the playbook fails:
1- Set Var=0 in the first step (either in Manual trigger step ot by adding separate set variables step)
2- Ignore error and Set Var=1 in the step that can be failed due to any reason.
3. link it with additional step (Ex:send email) and add the following condition : ( {{vars.Var}} == 1 )
