Josh Zwiebel
Josh Zwiebel

Reputation: 1003

How to filter GitHub issue search by linked pull request?

I am trying to participate more in open source projects so I find myself looking at the issues tab a lot. I would like to filter issues but make sure there is no linked pr that would resolve the issue. I find that I click on an issue and find there is already a PR in review. Is there a way to specify that filter?

Upvotes: 6

Views: 1297

Answers (1)

GoodDeeds
GoodDeeds

Reputation: 8507

From the GitHub help page:

repo:desktop/desktop is:open -linked:pr matches open issues in the desktop/desktop repository that are not linked to a pull request by a closing reference.

So, use -linked:pr in your search.

Upvotes: 10

Related Questions