I have a manually triggered automation that will clone an epic and all of its child stories (25 of them). I would like the cloned stories to retain the same order as the ICSAUTO-1 epic they are being cloned from.
I attempted to do this by sorting my JQL result. For some reason the stories still end up on the cloned epic in a pretty random order.
Automation
JQL Results - Showing the order inside the automation is correct
Stories on cloned epic (after automation execution)
Hi @Aaron Eden
Branches in rules which could-be-on-more-than-one-thing are executed in parallel and asynchronously, with no predictable processing order.
With an automation rule, I know two ways to enforce issue creation order, but neither will work for your scenario of 25 child issues.
Outside of automation rules, there are likely marketplace apps for cloning, or you could build-your-own service which creates issues sequentially and call that service from a Jira rule.
Kind regards,
Bill
Hi @Aaron Eden
The sorting in the JQL inside the automation will not set the sorting on a Board/Filter. The Clone operation is acting on the issue and not on a Board, sorting is not tied to an issue but to the board or filter.
You will not be able to achieve this via Automation, however you can set this at the Board configuration.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for your help @Shawn Doyle - ReleaseTEAM , much appreciated.
The view where I'm hoping for the stories to be sorted in alpha order is when I'm viewing a single epic and it lists the stories. How can I change the sort order there?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I do not think you can. You sort it once and it may remember your preference for the next time.
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.