Error Handling /Ending Gracefully

Hello,
I dont seem to be able to find any specific action/step that is capable of handling an error gracefully or ending a workflow gracefully.
Am i missing something?

For example, i have a workflow that checks something every hour. If it doesnt find it, it fails, if it does find it, it sends a Teams message.
I dont want it to “fail” i want it to gracefully end.
There is a general lack of error handling capabilities like i have seen in other SOAR tooling.

Thanks,

Why not put in a decision point, two options?

If it returns results, send the teams message. If it does not return results, leave the decision blank.

Each action can be configured to “continue on failure” by selecting the checkbox under the action name. This allows you to gracefully fail and continue to the next step given you expect the action to fail for specific use cases. You could then use a decision step to act on that failure to send a teams message accordingly. Overall job will succeed even though that one action fails.

2 Likes