I'm trying to create a filter to show issues that have not been updated (commented) in a certain amount of time.
The problem is I also have automation set up to remind my users to update their issues via a comment.
This causes any filter I create to show that issues have in fact been updated because of the Automation user commenting on them.
---
So, what I'd like is to be able to create a filter that shows me tickets that have not been updated in at least 5 days, but don't include comments made by the Automation user. (Automation for Jira)
I currently have my filter set up to show issues that have not been updated in the past 5 days.... but the Automation comments are also set up on a 5 day schedule, so it makes this filter pretty much empty, even though my (lazy) users have not updated the issue in over 5 days:
project = BUILD AND resolution = Unresolved AND NOT updatedDate >= -5d ORDER BY status DESC, lastViewed DESC
I came up with this, but it does not work either because it does not look at comments:
project = BUILD AND resolution = Unresolved AND NOT updatedDate >= -5d AND (Not status changed BY addon_com.codebarrel.addons.automation)
Thanks much for any help you can provide!
Hey Anthony,
this is a tricky, if not impossible, one to get around with JQL acting as a filter.
I don't know if this would suit your business needs but what you could do is - in your automation rule, you could send emails to your users rather than commenting on the issue. This would solve the problem.
Hopefully, that helps
Cheers,
John
Thanks John. I came to the same conclusion. I’m going to be changing to emails. Thanks for your input.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.