I want to find out any JIRA issues that the status has not being changed for more than a week. I tried below but it crashed my Kanban board with timeout issue
status="In Progress" AND not status changed after -1w
Try just doing the following
not status changed -1w
You could try this JQL:
status="In Progress" and NOT status changed BEFORE 1w
I am using Jira v6.3.12 but this JQL doesn't work. If I use this query in my Kanban board, it even timeout the whole board.
project=XXX AND not updated >= -7d and status not in(Accepted,Discarded,Deleted,Deployed)
Updated does not mean that status hasn't changed. That's not what's being asked. I can add a comment and the issue has been updated.
It looks like you're new here. Sign in or register to get started.