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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.