Search code examples
githubgithub-apipull-request

Is there a Git API List of Pull Request To Review?


I want to list up my team's pull request list not approved by me

https://docs.github.com/en/rest/pulls/pulls#list-pull-requests

I tried that API but it is return full list of my team's PR


Solution

  • You can try and install the GitHub CLI gh, to use gh pr list, with a search term:

    gh pr list --search "state:open type:pr review:approved"
    

    Compare it to:

    gh pr list --search "state:open type:pr"
    

    The delta are the PRs you did not approved yet.