The overall goal is to showcase the resolution type on advanced roadmap (Plans) but since that is not possible I would like to leverage a workaround to copy the resolution status to a text field so I can pull it into the view.
The native resolution jira field is not an option to select in the "field to copy from value from" in the edit issue section when trying to copy from the trigger issue.
Hi @Frank Merla - Yes you should be able to do this with automation:
{{issue.resolution}}
NOTE - You'll want to check Allow Rule Trigger if you have other automation that resolves issues.
Thank you @Mark Segall! Do you happen to know if this would also work for a custom label field type? I'm toying with the notion of changing the custom field to a label type to allow for filtering in Plans/Advanced Roadmaps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It will. But note that if you want the text value (i.e. "Done) rather than the unique numeric ID of the Resolution value, then you need to use this smart value instead:
{{issue.resolution.name}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Understood, and I'm assuming I'd need to create the label ahead of time so it's available for selection, correct?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No, you would not.
Any user can create a new Label value simply by entering text into a Labels type field.
That is both a pro and con for Labels.
If you want to control the values that can be selected/entered you need to use a multi-selection list field instead.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This field will only be used to mirror what's in the resolution state via this automation, so the label field will allow flexibility and less admin oversight. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Frank Merla
You should be able to use Advanced Field Editing to put the value into your custom field.
You would need to find the smart value for the Resolution field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.