Whenever there is a new ticket, I want to automatically link it to tickets that has same field-value if that new ticket contains a similar field-value.
Hi @Justine - You could do something like this:
YourCustomField = {{issue.YourCustomField}} AND key != {{issue}}
Hi,
Any ideas why this would won't work for my automation via Jira Cloud
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Andrew Lee and welcome to the community!
Your branch is staying on the current issue but needs to instead branch into the desired issue(s). You'll want to change the branch to use JQL. Ultimately, the rule should look like this:
cf[xxxxx] = {{issue.customfield_xxxxx}} AND Key != {{issue.key}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I want to implement this, but I also have about 600 old tickets I'd like to reprocess (and the standard plan so I also have an automation budget). So I am hoping for one automation that is computationally costly, but I only run one time as it will reprocess all the existing issues.
Would something like this work:
TRIGGER: Manual
BRANCH (JQL)
-------
I imagine the gotcha comes in specifying the issue.key correctly to mean the issue referred to by the outer branch.
Open to other approaches. Including downloading all tickets to a CSV, reprocessing to do the linkages with a custom R or Python script, and then re-importing all the issues from CSV, but that seems dangerous and drastic... (even it if does allow me to play in my coding comfort zone)
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.