Reputation: 653
I used to be able to search github by pull request number.
This number is used in the pull request url as an identifier and it appears in gray by each pull request #XXX
.
I used to be able to search is:pr is:closed 1234
and get results of pull requests with the string 1234 in the pull request itself along with pull request #1234 would appear.
I have lost the result for PR #1234 and I am trying to figure out how to get this functionality back.
Upvotes: 5
Views: 3253
Reputation: 8507
If you know the PR number, you can just go to the URL (unless you for some reason need it to necessarily access it from the search function):
https://github.com/<username>/<repository-name>/pull/<pr-number>
Upvotes: 3