I have a particular git branch name, and I want to find the open pull request(s) (if any) that will merge that branch into a base branch (most typically master
/main
).
How can I use GitHub's web UI to find that pull request?
- The
Pull requests
tab for a given project currently offers the ability to filter by any of Author, Label, Projects, Milestones, Reviews, or Assignee -- but not by branch.
Related existing question: How can I filter all GitHub pull requests for a specific target branch, which covers how to find pull request(s) based on on a particular target (base) branch name.