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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.