Milton Sermoud
Milton Sermoud

Reputation: 53

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.

Upvotes: 1

Views: 146

Answers (1)

Matt
Matt

Reputation: 13923

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

Upvotes: 1

Related Questions