Scriptrunner condition not working

M May 4, 2017

Using the cloud version of JIRA I have a ScriptRunner post function set up to 'Send Notification' if a condition is met.

I have verified the notification works without the condition.

This condition worked in the Server version of JIRA: issue.priority?.name == 'Critical'

However, it does not work in the cloud version.

Conditions I have tried in the cloud version:

issue.fields.priority.name == 'Critical'

issue.priority?.name == 'Critical'

issue.fields.priority == 'Critical'

 

Can someone point me to the correct syntax for when the Priority = Critical?

1 answer

0 votes
Marc Gervase May 8, 2017

I was able to get this working by using the condition:

((Map) issue.fields.priority)?.name in ['Critical', 'Blocker']

Suggest an answer

Log in or Sign up to answer