[GitHub] How to Filter Pull Requests by Creator and Reviewer

Tadashi Shigeoka ·  Tue, July 23, 2019

This article introduces how to filter GitHub Pull requests by creator and Reviewers (users who reviewed).

GitHub

Prerequisites

  • Check all GitHub Pull requests when evaluating engineers
  • Want to check GitHub Pull requests by @username

Examples of Using GitHub Filters

I’ll introduce examples of how to use GitHub Filters with nodejs/node.

  • username: noordhuis

is:pr author:username

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

is:pr reviewed-by:username

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.