How to search GitHub issues for the ones you're watching?

319 views Asked by At

How can we search/filter GitHub issues for the ones you've previously marked as 'watching'?

I can't spot any way to do it via the GUI, but perhaps there's some search parameter?

I took a guess and tried watching:true and currentUser(), but neither seemed to work

enter image description here

2

There are 2 answers

4
VonC On BEST ANSWER

You would not get a web-based search filter for "watched": the Advanced search does not include anything related to "watched/watching".

Even the GitHub API does not include anything regarding watching at the issue level.
There are only API calls for listing watchers at the repository level.

0
riQQ On

You can see all your subscriptions at https://github.com/notifications/subscriptions. You can filter by reason and repository and sort by Most recently subscribed or Least recently subscribed.

Screenshot of subscriptions overview

Available subscription-reason filters

  • Any reason - Show all subscriptions
  • Assign - You were assigned to the Issue/PR.
  • Author - You created the thread.
  • Comment - You commented on the thread.
  • Manual - You subscribed to the thread (via an Issue or Pull Request).
  • Mention - You were specifically @mentioned in the content.
  • Review Requested - You were requested for review.
  • State Change - You changed the thread state (for example, closing an Issue or merging a Pull Request).
  • Team Mention - You were on a team that was mentioned.