Hi all, i am looking for a way to execute multiple steps in an automation which involves if's statements but not if-elseif-else. In pseudo code:
when {issue created}:
if value1 == x:
assignee = y
if value2 = z:
priority = low
send_email(t0_reporter)
I want all the code to be executed sequentially and not stop after the 1st if-statement.
I read about branching, but if I understand correctly, that seems to start multiple parallel execution pipelines.
Thanks in advance.
Thanks, so just to be sure: the actions in these branches are executed sequentially? Also if the For: statement is different between branches?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Rule is executed one after the other. Whenever there is match, the rule is executed
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.