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

Anji G 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

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 Leaders.
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

Suggest an answer

Log in or Sign up to answer