Hello! I have an orquestra workflow which has a task at the end to send out a message to chat room . . . I would like to make this message conditional on a flag set in config, so I guess I would do something like
task_before_sending_out_message:
action: ex_pack.poopy
next:
- when: <% succeeded() %> and <% ***config.flag == True*** %>
do: task_to_send_out_message
task_to_send_out_message:
action: gchat.send_message "yay"
What do I need to put for “config.flag” to be able to use a var from the pack config?
Thanks!!!