You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Our system is set up for AutoWatch which then makes user a watcher if they have:
A common filter is:
watcher = currentUser() ORDER BY priority DESC, updated DESC
Is there a way to filter this to eliminate those WATCHED items that were set by AutoWatch?
We have users that expected clicking WATCH ISSUE would help them go back and review specific items, but they have lists thousands of tickets long because of AutoWatch.
Hello @David Borough
There is no filter criteria to distinguish that a person became a Watcher through Autowatch.
They could adjust their filters thus
watcher=currentUser() and creator!=currentUser()
...to eliminate from the list the issues for which they are also the Creator.
With native JQL there are no criteria to select issues based on who did or did not add comments. If you have third party apps installed that extend JQL functionality then you might be able to further reduce the list by leveraging options those apps provide.
Thanks for your response.
I was already using those two to help narrow it down.
Perhaps I can find a way to remove any tickets in which there are comments, but then some that I would want won't be in the list. (probably better than too many)
If I had access to a Jira database, there is probably some sort of watched item 'user created' assignation that could be used, but at that point I don't think it would be worth the trouble within our org :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you are open to third party apps, these are a few that offer a "commentedBy" criteria:
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.