what is the proper syntax to update JIRA issue priority in a workflow post-function?

Jeannette Lamb May 16, 2013

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.

1 answer

1 accepted

0 votes
Answer accepted
JamieA
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 16, 2013

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

Jeannette Lamb May 17, 2013

Thank you! that worked.

Suggest an answer

Log in or Sign up to answer