Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×I'm using JIRA service desk, cloud.
I notice a few small automation features, but nothing that would allow me to automatically close issues based on data like time spent, issue type, etc.
Is this possible?
Hi Tony,
Here's how I achieved automation for closing an issue after timeout with JIRA Service Desk:
Does it sound like that approach would work in your scenario?
Thanks Tony, have a great day,
Nick Muldoon
Co-CEO, Easy Agile
Easy Agile, creators of Agile User Story Maps for Jira, Agile Roadmaps for Jira, Personas for Jira, and Scaled Agile Programs for Jira
I just wrangled this out with a customer today, and we came to the same solution! So funny to see it right now on a question I'm watching.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Tony,
Unfortunately it is not possible in a Cloud instance.
Cheers,
Henrique Freitas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you can define a JQL statement that identifies your conditions for closure, then, using JIRA Command Line Interface (CLI), you can use something like the following in your favorite job scheduler:
jira --action runFromIssueList --jql "status = resolved AND resolutiondate < -1w" --common "--action transitionIssue --issue @issue@ --transition \"Close Issue\" "
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The only method of doing this sort of automation would be externally. JIRA Cloud instances can enable Remote API access, so you can write a script in just about any scripting language (such as Python..) that can perform the following –
type=Request AND updated(-30d)
"The point is you can do it but you have to maintain the 'service' yourself.
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.