Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

JQL to run at end of every quater

Piyush_Annadate
Contributor
February 8, 2018 edited

Hi All,

Is it possible to run a JQL/ retrieve list of issues/tickets at the end of every quarter.

I do have scriptrunner installed and see Escalation service as an option. But that would require a JQL for it - Do we have that kind-of feature to list ticket which are open and let them close at the end of quarter?

1 answer

0 votes
Ivan Tovbin
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 8, 2018

I think you should try something like:

created >= startOfMonth(-3) and resolution is empty
Piyush_Annadate
Contributor
February 8, 2018

hi,

That won't be good here as it won't be good to know about the current quarter. 

Ivan Tovbin
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 8, 2018

Well then if the search is run AFTER the quarter has ended then I think this should work:

created >= startOfMonth(-3) and created <= endOfMonth(-1) and resolution is empty

Suggest an answer

Log in or Sign up to answer