Restricting the resolution values in a transition
Normally, issue resolution values such as Fixed and Won't Fix are global, so regardless of the project and issue type, the same set of values will be available. As you implement different workflows in JIRA, you may find that certain resolutions are not relevant in a given workflow.
In this recipe, we will select a subset of the global resolutions available when we close issues using our Simple Workflow.
How to do it…
Perform the following steps to selectively include a subset of resolutions for a given workflow transition:
Select and edit the Simple Workflow.
Select the Close workflow transition.
Click on the View Properties button.
Enter
jira.field.resolution.include
for Property Name and the IDs (comma separated) for resolutions we want to make available into Property Value. So, if we want to include the resolutions Fixed, Won't Fix, and Duplicate, we need to specify values1
,2
, and3
as the property values.Click on Publish Draft to apply the...