How to set fixversion depending on issue resolution value

Nick May 19, 2013

I need to ensure that as an issue is resolved as anything other than Fixed, the FixVersion is set to Not Applicable.

1 answer

0 votes
Faisal
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 19, 2013

Hi Nick,

Apparently there may be no standard JIRA configuration which may allow you to achieve this requirement.

However, I believe that this may be possible by using JavaScript which will update the FixVersion field automatically based on the issue resolution. You may kindly refer to the following documentation which may contain some example that can be used for you to achieve this:
- https://confluence.atlassian.com/display/JIRA/Fields+Allowing+Custom+HTML+or+JavaScript
- https://confluence.atlassian.com/display/JIRACOM/Using+JavaScript+to+Set+Custom+Field+Values

Though it's not much, I hope that this will help!

Nick May 20, 2013

Thanks Ahmad, but it seems there may be a way, using JIRA Scripting Suite.

I found this code snippet today :

If you want to clear out your Fix Version (say when you Close - Won't Fix something) you need to pass an empty list.

if (issue.getResolutionObject().getName() \!= 'Fixed'):
issue.setFixVersions(\[\])

However it gives me an error :

Root cause SyntaxError: ("mismatched character '!' expecting '\\n'", ('<string>',1,43, "if (issue.getResolutionObject().getName() \\!= 'Fixed'):\n"))

So maybe the snippet is incomplete. Anyone help, please ?

If I add the '\\' escapes then I get the same error with more of them !

Suggest an answer

Log in or Sign up to answer