I'm trying to write some automation rules, and I was wondering if there is a way to do an "If: any match" rather than the "If: all match". It seems like something that should be pretty straightforward but I can't figure it out!
years later, not googling this up for the first time, again surprised this elementary functionality everyone would expect is still missing...
anyway, you can (although it's not elegant) switch the logic:
instead of:
if (a OR b OR c) {do this}
else {do that}
create the rule:
if (NOT a AND NOT b AND NOT c) {do that}
else {do this}
also sometimes it could help to split one more complex rule in two/three more simple ones
Hello @Fook Lee you should try using if/else scenarios to do that. If they aren't a lot, that should be a good option
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry - I didn't see this. I'm already using if/else scenarios, but right now I have to duplicate my entire workflows for different scenarios because the if/else scenario only supports "if: all match".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hello @Fook Lee sorry for the delay on the response. What do you mean by If only supports all match? I believe that's the purpose of the else scenario to have the OR scenario. Can you share your automation rule to see if I can better assist you?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i guess he means something like this:
if a then
...
else if b or c or d then
...
else
...
As you can see the else if in the middle is a any match. But right now Jira only supports all match. The advantage of any match in this case is of course saving a lot of repeating. In Jira as it is you would need to write the same part for the cases b, c and d.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ah, again I didn't get a notification and didn't see this...
Thanks Marcel, that's exactly right. In one example, I'm basically trying to do:
If (summary starts with SR or IN) then
...
So my automation rule I have is:
if (summary starts with SR) then
...
else if (summary starts with IN) then
...
And I basically have to repeat the steps for both cases.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.