Cloud Migration Resources
Planning a Jira Cloud migration? These resources can help you get started:
→ JMWE Cloud features – Review Cloud features and understand key differences between DC and Cloud.
→ Migration support from Appfire – Learn how we can help you migrate smoothly.
Using JQL in JMWE
Groovy
issue.issuetype.name == "Bug"JQL
jqlSearch( "issuetype = 'Bug'" , 1 )Priority of the issue
Groovy
issue.priority.name == "High"JQL
jqlSearch( "priority = 'High'" , 1 )Reporter is a member of the Administrators group
Groovy
reporter.isInGroup("administrators")JQL
jqlSearch( 'reporter in membersOf("administrators")' , 1 )Checking the value of a multi-valued field
Groovy
issue.get("Multi-valued field").find{it.value == "Negative"}JQL
jqlSearch( '"Multi-value field" = "Negative"' , 1 )Generate a report of all HIGH severity JIRA tickets for a project with key X (or name X) that were created from 9 PM EST to 12 AM EST from the start of the year
Preventing users from reporting too many issues per day
Disallowing working on too many issues at the same time
"issuetype = "Test case" AND "Test Failed against browsers" is EMPTY" - Groovy condition
The current issue is the only issue that is resolved
Transition parent issue only when all the subtasks are in status “Done”