Hi everyone,
I created an automation rule to auto-clone issues from projects A, B, and C into project BI and link them using the 'Clones' issue type link. Now, the problem is it also auto-clones the parent, which is a problem. What step should I add to the rule to stop it from auto-cloning the parent? The thing is, I have not added the 'Parent' field to copy from the current issue, but it still does.
#jiracloud
#jirapremoim
#companymanaged
Hi @BenWade
Would you please confirm what you are observing:
For the rule you show, the second one (clone the Parent issue) is not caused by that rule. Something else is causing the cloning.
For the first one (clone the Parent field), that field cannot be cleared by selecting it and leaving it empty in the rule action. Instead it may be cleared using advanced edit with JSON, by removing the Parent field from the dropdown selections and then expanding the "More options" section:
{
"fields": {
"parent": null
}
}
Kind regards,
Bill
Thank you very much, @Bill Sheboy
I have just incorporated the provided json to mine and done 👍
{
"fields": {
"parent": null
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @BenWade
I'm not sure why this happens to you, but have some ideas how you could tackle the problem:
Maybe these thoughts help you in finding a solution.
Good luck,
Matthias.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
1) No
2) Correct. It auto clones when value 'true' added
3) Do not get it
I simply want the rule to not autoclone the parent regardless of the issue type.
Maybe I can manually add json here for the parent field so it stops autocloning it?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
My last point was more a follow-up to 1) if there was another execution for the parent in the audit log of your rule, you could define a condition to exclude your parent.
But I guess, I'm out of ideas for now, sorry 🫤
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.