2
votes

I know I can see pull requests made by me on other people's repositories:

https://github.com/pulls

But I am looking for the opposite. I know there are open pull requests by other people on my repositories. But I have so many repositories, it costs me too much effort to walk through all of them to review open requests.

Is there not a simple search that lists all those pull requests?

1
I requested this feature before these nice filters to exist. I was so happy when they implemented them. :-) - Ionică Bizău

1 Answers

2
votes

Use the GitHub issues filters:

is:open is:pr user:username -author:username

This will fetch the pull requests made in your repositories, by others (excluding you, using -author:username).

In my case (my username is IonicaBizau) I just do: is:open is:pr user:IonicaBizau -author:IonicaBizau