How to close ticket automatically after certain time?

VenugopalY February 27, 2013

Hi Support,

How to close tickets automatically which are in Resolved state for more than 30 days? (Resolved to Closed)

Please let me know the all possible ways to achieve this?

Any plugins support this?

Venu

2 answers

1 accepted

2 votes
Answer accepted
Bob Swift OSS (Bob Swift Atlassian Apps)
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 28, 2013

JIRA Command Line Interface can be used with the runFromIssueList action and a JQL query to select whatever issues you like, for example:

--action runFromIssueList --search " <some JQL> " --common '--action progressIssue --issue @issue@ --step "Close Issue"'

2 votes
Mizan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 27, 2013

You can write a jelly service or a groovy service (using script runner plugin ) which will check for all issues in resolved status for more than 30 days , for these issues a commnet can be added and the issue can be transitioned to the Closed status .

https://confluence.atlassian.com/display/JIRA/Jelly+Escalation

Mizan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 27, 2013

Right , there are some security concerns related to jelly that is the reason it is turned off by default .

Sameera Shaakunthala [inactive]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 27, 2013

Wouldn't it be a better option to use Groovy rather than Jelly due to security concerns?

VenugopalY May 3, 2015

My system configured with jelly script for Auto close tickets that have been resolved in state for 30 days with email notification to reporter. Jelly script will change/update Resoled state to Closed with custom message to reporter after 30 days (as per filters) How to achieve same function with Script Runner? Please advise.

Suggest an answer

Log in or Sign up to answer