I'm using the built in script to clone an issue and my conditions appear to be working correctly because the clone is successful but I also want to add a additional issue action to set the priority of the resulting clone. I've tried " issue.priority?.name == 'Blocker' " and a few other options but the priority is always left unset in the clone.
Thank you.
Try:
issue.priorityId = '1'
where '1' I think is blocker, and '5' is minor IIRC.
if you use issue.priority you need to provide a GenericValue - see https://developer.atlassian.com/static/javadoc/jira/5.0.5/reference/com/atlassian/jira/issue/MutableIssue.html
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.