Hi guys
I have a workflow with various python wheel tasks and one job task to call another workflow. How can I prevent my original workflow from getting an unsuccessful state if the second workflow fails? These workflows are independent and shouldn't affect the outcome of each other. We only chain them to speed up the total run time.

I tried to declare both previous tasks (wheel and job task) as depends_on in the configuration of the final task, but then I can't find the correct property for the run_if to set it to something like "at least one success".
We are using asset bundles and configure our workflow by using a YAML file. Unfortunately I only found some piece of documentation for JSON configurations and mostly UI approaches on how to solve it.
So, how do I find the correct values for configuring the run_if option?