I need that for a specific project, every time an issue is created, the content of a specific custom field is read and depending on its content the ticket is moved to another project. This custom field has a list of approximately 40 possible values, each one related to a different project. Is it possible to automate this movement?
Just to confirm, are you using Jira Data Center?
If so, what you describe is likely not possible with an automation rule for several reasons:
It seems you are trying to create a dispatcher to assign issues to projects based on a request field value. Perhaps discuss this need with your Jira Site Admin to learn what is possible to help.
Kind regards,
Bill
Hey @AgileHappyLearner ,
As stated by the others, this is not a trivial task.
If your "Data Center" flag is correct here and using a third-party app is an option for you, I'd suggest checking out Jira Workflow Toolbox and its Move issue post function, which lets you move issues between projects. Please let me know if you need a helping hand regarding the setup.
Regards,
Thorsten
P.S. I'm part of the team behind the app mentioned above.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello, @AgileHappyLearner !
Unfortunately, Jira Cloud doesn't currently support using automation to move issues. The workaround would be creating an automation to clone the issue in the destination project and delete the original one. Here is an Atlassian documentation showing the steps to configure such automation [LINK HERE].
For the context you described, yoou would have to change the trigger to "issue created".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is very possible, you would use "work item created" as the trigger and then a series of IF/Elses to go through all the possible outcomes, with an action to move the ticket in each.
For example : When work item created > if custom field = "X" > then clone work item to "project X"
Else if custom field = "y" > clone work item to "project y"
Then you need to either add another action resolve to close the original work item, or delete it.
The only thing I would say, is that if you need to move the ticket as it is, you'd need the target project to have the same custom fields to ensure no data loss.
Thanks
Aaron.
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 reply! But isn't it really possible to move them, just clone and close them? On the other hand, the field's list of values is around 40 and can keep growing. Is there any other way to do this other than concatenating if, else if?
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.