Hello,
I want to write a workflow to collect alarm information and then treat them differently.
I can use when
Conditionals to implement if elif
:
- when: <% succeeded() and result().result.alert_type = 'something 1' %> do: something 1 - when :<% succeeded() and result().result.alert_type = 'something 2' %> do: something 2
But how do I implement else
logic?