How to add 'condition' for activity

Here is a workflow A → B → C and I hope activity C can run even if activity B failed.

Hello @dylan_yu

Failed activities will throw an ActivityFailure exception. You can handle the exception in your workflow code and decide whether or not you want to propagate it to fail the workflow execution, run compensation etc…

Antonio