Hi All,
I have requirement to trigger two different custom emails for following conditions
When Priority =Priority 1, custom field "Test Phase" = AAA or BBB and Custom field Detected Release != null trigger email 1
For this I used this condition and it works fine.
issue.priority?.name == 'Priority 1' && cfValues['Test Phase']?.value in ['AAA','BBB'] && cfValues['Detected in release']?.value != null
I need to send email 2 for the opposite of the above. ie. When Priority =Priority 1, custom field "Test Phase" != AAA or BBB and Custom field Detected Release == null
Can some one modify the above condition for this requirement?
Myabe like this
!(issue.priority?.name == 'Priority 1' && cfValues['Test Phase']?.value in ['AAA','BBB'] && cfValues['Detected in release']?.value != null)
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.