Hi all!
I am looking for the way to created this rule but I am struggling on how to achieve it properly.
(We have JIRA Datacenter)
I want to have a monthly rule that looks for those FixVersions unreleased and overdue and then, mark them as released for those have all of its tickets in status = Closed.
For that what I achieved is:
JQL = fixVersion in unreleasedVersions(ABC) and status = Closed and fixVersion in overdue()
=> created the Cron job (That's easy part)
And then what I did, it was:
2nd.- Create a Lookup Issues with that same JQL
3rd.- Branching on JQL type with JQL = "key in {{lookupIssues}}"
4th.- Release version action using the release name as {{issue.fixVersions.name}}
But I am getting some errors. and "THROTTLED"
How can I achieve it
Hi @ignacio_elorriaga -- Welcome to the Atlassian Community!
Short answer: your rule is exceeding one (or more) of the automation service limits...causing it to be throttled and halted:
https://confluence.atlassian.com/automation/automation-service-limits-993924705.html
I recommend pausing and discussing this with your Jira Site Admin to help identify which limit is being exceeded.
Without seeing your entire rule and the audit log details...
The scenario you are trying is challenging with Jira Data Center automation as it does not have the Advanced Branch feature. And so you are trying to iterate over all of the issues rather than all of the unreleased versions.
Two possible workarounds to try would be:
1) Reduce the load on the branching
2) Use chained, recursive rule execution as a workaround for branching; please talk to your Jira Site Admin before trying this approach.
Also, I am curious: do you have a marketplace addon for JQL or is the overdue() function a built-in one for Data Center? I do not see that in the JQL function documentation.
Kind regards,
Bill
OMG! thanks for pointing it out. I have never though it could be so complex
I will try the 1st option
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.