This is an old revision of the document!


Custom Condition

This task will execute a custom Expression and continue the workflow with the path you set with return value.
This task could be used to initiate $env variables, for example.

The only requirement of this task is to return “yes” or “no” to define the output the workflow should take.

Example 1
$env["variable"] = false;
$env["variable2"] = 1;
return "yes";