1

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.

Ethan
  • 881
  • 8
  • 14
  • 26

1 Answers1

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
Matt
  • 12,848
  • 2
  • 31
  • 53