We are creating an automation rule that loops through linked issues on a change request. We want to get all the fix version(s) associated with the first linked issue and transition the stories for those fix version(s) to closed AND release these fixVersion(s) then repeat for then next linked issue until all linked issues updated.
Is there a way with a smartValue and JQL to setup a fixVersion in ({{smartValue}})?
Yes, a smart value (containing a list of, or delimited, values) could be used to create a dynamic JQL statement to find issues. For example, to find the subtasks of an issue:
key IN ( {{issue.subtasks.key.join(", ")}} )
However you seem to be describing a scenario that would require both nested branching and sequential branch processing, and neither of those are possible with Jira automation rules.
I recommend you:
Those will provide context for the community to offer more specific suggestions.
Kind regards,
Bill
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.