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
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"'
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Right , there are some security concerns related to jelly that is the reason it is turned off by default .
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Wouldn't it be a better option to use Groovy rather than Jelly due to security concerns?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
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.