The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

JQL query to know inactive projects in last 3 months..

Anji G
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
January 23, 2018

Hi,

I would like to know the JQL query to fetch all the inactive projects. Can you please help me in this, thanks

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Alexey Matveev
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 Champions.
January 23, 2018

Hello,

You can not do it with JQL. JQL returns issues, not projects. You should write your own service by developing a custom plugin or using such add-ons like Power Scripts or Adaptivist ScriptRunner. In this service you could do all the neccessary work which needs to be done on inactive projects.

In Power Scripts your script would look like this (this script defines all inactive objects and put its keys in the ret array)

string[] ret;
for (string pKey in allProjects()) {
boolean flag = true;
for (string iKey in selectIssues("project =" + pKey)) {
if (%iKey%.updated < currentDate() - "30d") {
flag = false;
}
if (flag) {
ret += pKey;
}

}
}

// do something with your inactive projects

You can read more about Power Scripts here

https://marketplace.atlassian.com/plugins/com.keplerrominfo.jira.plugins.jjupin/server/overview

TAGS
AUG Leaders

Atlassian Community Events