I have JIRA Misc Workflow extensions installed and I'm trying to use the “Scripted (Groovy) Condition (JMWE add-on)” condition on a transition in my subtask workflow.
I only want to be able to execute the transition if the parent issues issue type is "Bug"
I have the following but it is not working:
if(parentIssue.get("issuetype").getName() == "Bug"){ return true; } else { return false; }
I am running JIRA version 7.3.5
JMWE version 4.0.7
Any ideas how to access the parent issue issue type using Groovy within JIRA Misc Workflow extensions?
Thank you!
Hi @Jeremy Coukoulis use the following code to get the issue type for the parent issue
issue.parentObject?.issueTypeObject.name
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.