Hi, I am trying to find all the issues which did not have a change in their status within x days from the create date of that jira.
TIA
Hi @Nikhil ,
Welcome to Community !
With help of script runner app and dateCompare function you will get JQL to get not updated issue for x days.
issueFunction not in dateCompare(
""
,
"created +2d > updated "
)
Thanks,
Avinash
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.