'how to filter issues that have PR associated on GitHub?
I like to read issues that have PR in order to learn how a problem could be solved.
how can I filter issues that have PRs associated with them on GitHub?
Just read the PR directly isn't a solution: you could have some PR which hasn't an issue reference.
Solution 1:[1]
You can search for issues which are linked to a pull request by a closing reference by using the linked:pr qualifier. The following search query is what you want:
is:issue linked:pr
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Matt |
