I am cloning an Epic and its Children using automation. I would like to remove a Label value from all of the cloned children.
If I have an Epic with one child, it works.
If I have an epic with many children, it seems that the processing is too fast. When that automation checks for the children, it sees none and ends.
Hello @James Woyciesjes
Do I understand correctly that you are Cloning the issues in the first branch, and in the second branch you are trying to edit the issues created in the first branch?
If so, you will run into the problem that branches in Automation Rules execute in parallel. You cannot count on one to complete before the next one starts.
From this document:
Ordering of branch executions
Branches on multiple issues (such as 4 sub-tasks) will run in parallel with no guarantee one will finish before the next one starts. Therefore, you cannot rely on changes between branches.
Branches on multiple issues are run as a new process, with the main branch continuing execution before the sub-branch starts.
Branches on single issues are run inline (for performance). Therefore the main branch will not continue execution until the sub-branch completes.
To work around this you have to, even in Cloud, you have to split the activities of the second branch out to a separate rule, or incorporate the activities of the branches into a single branch, if possible.
Yes, and...to the suggestions from @Trudy Claspill
I agree with using a single branch, and rather than copying all of the labels when the child issues are cloned, instead add the labels with JSON during the clone with the desired one already removed.
https://confluence.atlassian.com/automation/advanced-field-editing-using-json-993924663.html
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for the response, I will try and hopefully reply with success!
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.
Oh, but it's for Jira Coud(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, I saw options for Cloud. In process of migrating but need something for the short term that doesn't involve a lot of coding, etc. if possible.
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.