Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to show issues in my repositories on GitHub

Up until a month ago, GitHub had an Issues view that allowed one to view open issues and pull requests in their own repositories. This was useful for seeing what was needed to be addressed across a lot of OSS projects.

They recently released an update that (in my opinion) is a lot less useful, as it only shows issues that one has either created, been assigned, or been mentioned in.

enter image description here

This basically excludes all issues that have been created by others in my repositories.

Is there an easy way in this new system to view all outstanding issues in my repositories (and better, in repositories in my organizations too)? At this point, the only solutions are either digging through e-mail or looking at repositories one by one, both of which are pretty unpalatable.

I understand this isn't a programming question per se, but it's much more likely to be answered here than anywhere else.

like image 759
Andrew Mao Avatar asked Jan 10 '23 14:01

Andrew Mao


1 Answers

Seems like the new way to do this is not obvious, but involves entering the following in the filter area:

is:open user:fooUser user:BarOrganization

This displays all open issues and pull requests under both the fooUser and BarOrganization accounts.

(The default of is:open is:issue hides pull requests.)

like image 84
Andrew Mao Avatar answered Jan 14 '23 04:01

Andrew Mao