This article introduces how to filter GitHub Pull requests by creator and Reviewers (users who reviewed).
I’ll introduce examples of how to use GitHub Filters with nodejs/node.
The URL to filter only Pull requests created by username: noordhuis is as follows:
https://github.com/nodejs/node/pulls?utf8=%E2%9C%93&q=is%3Apr+author%3Abnoordhuis
The URL to filter only Pull requests reviewed by username: noordhuis is as follows:
https://github.com/nodejs/node/pulls?utf8=%E2%9C%93&q=is%3Apr+reviewed-by%3Abnoordhuis
That’s all from the Gemba on checking all GitHub Pull Requests to evaluate engineers.