Reputation: 1003
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
Reputation: 8507
From the GitHub help page:
repo:desktop/desktop is:open -linked:pr
matches open issues in thedesktop/desktop
repository that are not linked to a pull request by a closing reference.
So, use -linked:pr
in your search.
Upvotes: 10