Hi, I keen to get some JQL for a Quick Filter that will enable me to display which issues haven't had a new comment added to them for 20 days.
Any thoughts?
Thanks in advance
Hi,
This:
!(commentedOn >= startOfDay(-20))
Will give you all issues that have comments, but not in the last 20 days.
If also want issues without comments at all add
commentedOn is EMPTY
So your funal JQL is:
!(commentedOn >= startOfDay(-20)) OR commentedOn is EMPTY
Very handy but commentedOn is not an out-of-the-box feature, it's from Adaptavist Scriptrunner
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yeah, forgot to mentioned it, there is no built in solution in Jira, you can achieve this only with add-ons, Scriptrunner is one of them
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Show up and give back by attending an Atlassian Community Event: we’ll donate $10 for every event attendee in March!
Join an Atlassian Community Event!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.