I watch many issues and cannot keep up with the email notifications when things change.
I want to be able to have a list of issues that I am watching so I can see where they are now.
How is this done in JIRA?
Hi @cprager
Welcome to the Community!!
Use the below query
watcher = currentUser()
If you just need to list the issues which are still open, follow the below JQL
watcher = currentUser() AND resolution = Unresolved
Sometimes the issues you are working on (where you will be added as Assignee or reporter), you'll be a watcher by default and to exclude those issues, follow the below
watcher = currentUser() AND assignee != currentUser()
Let me know if you have any queries
Thanks,
Pramodh
You can enter the following JQL into the advanced search screen.
watcher = currentuser() or assignee = currentuser()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@cprager , try using this JQL:
watcher = currentUser()
You can save it as a filter and add it to a dashboard using the Filter Results Macro.
-pjd
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.