The conditional execution parameter is used to specify whether a You can optionally specify a logical expression to define the circumstances (or conditions) under which the post function should only be executed based on predefined conditions.
The result of the logical expression must return a boolean value of either:
true
( → the post function will be executed)false
( → the post function will not be executed)
...