Advanced Filters

Kristen Viscardi March 3, 2016

I'm trying to create a filter for the automation plugin so that when an issue is in the resolved state for more than 3  days, it automatically transitions to closed. Can someone please help me set this up?

 

Thanks!

1 answer

1 accepted

3 votes
Answer accepted
Georges Moubarak
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.
March 3, 2016

you could use the following jql:

project = X and status = "resolved" and status not changer after -3d

Kristen Viscardi March 3, 2016

The query doesn't like "not changed after"

Kristen Viscardi March 3, 2016

would this work? project = QACR AND status = Resolved AND "Time In Status" ~ -3d

Georges Moubarak
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.
March 3, 2016

I'm sorry for that, please use:

project = QACR and status = "resolved" and not status changed after -3d

Suggest an answer

Log in or Sign up to answer