You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/issues/tracking-your-work-with-issues/using-issues/filtering-and-searching-issues-and-pull-requests.md
+15-15Lines changed: 15 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -209,11 +209,11 @@ gh pr list --search "team:octo-org/octo-team"
209
209
210
210
With issue and pull request search terms, you can:
211
211
212
-
* Filter issues and pull requests by author: `state:open type:issue author:octocat`
213
-
* Filter issues and pull requests that involve, but don't necessarily [**@mention**](/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#mentioning-people-and-teams), certain people: `state:open type:issue involves:octocat`
214
-
* Filter issues and pull requests by assignee: `state:open type:issue assignee:octocat`
215
-
* Filter issues and pull requests by label: `state:open type:issue label:"bug"`
216
-
* Filter out search terms by using `-` before the term: `state:open type:issue -author:octocat`
212
+
* Filter issues and pull requests by author: `state:open is:issue author:octocat`
213
+
* Filter issues and pull requests that involve, but don't necessarily [**@mention**](/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#mentioning-people-and-teams), certain people: `state:open is:issue involves:octocat`
214
+
* Filter issues and pull requests by assignee: `state:open is:issue assignee:octocat`
215
+
* Filter issues and pull requests by label: `state:open is:issue label:"bug"`
216
+
* Filter out search terms by using `-` before the term: `state:open is:issue -author:octocat`
217
217
218
218
> [!TIP]
219
219
> You can filter issues by label using logical OR or using logical AND.
@@ -227,19 +227,19 @@ For issues, you can also use search to:
227
227
{% ifversion issue-types %}* Filter for issues with a particular type: `is:open type:"Bug"`{% endif %}{% ifversion issues-advanced-search %}
228
228
* Filter for issues that have metadata: `has:label`
229
229
* Filter for issues that are missing metadata: `no:project`
230
-
* Filter for issues from repositories [**owned**](/search-github/searching-on-github/searching-issues-and-pull-requests#search-within-a-users-or-organizations-repositories) by a certain user or organization, limited to up to 16 `user` and `org` qualifiers with no limit on `repo` qualifiers: `state:open type:issue org:github OR user:octocat`{% endif %}
230
+
* Filter for issues from repositories [**owned**](/search-github/searching-on-github/searching-issues-and-pull-requests#search-within-a-users-or-organizations-repositories) by a certain user or organization, limited to up to 16 `user` and `org` qualifiers with no limit on `repo` qualifiers: `state:open is:issue org:github OR user:octocat`{% endif %}
* Filter pull requests that haven't been [reviewed](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews) yet: `state:open type:pr review:none`
236
-
* Filter pull requests that [require a review](/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches#require-pull-request-reviews-before-merging) before they can be merged: `state:open type:pr review:required`
237
-
* Filter pull requests that a reviewer has approved: `state:open type:pr review:approved`
238
-
* Filter pull requests in which a reviewer has asked for changes: `state:open type:pr review:changes_requested`
239
-
* Filter pull requests by [reviewer](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews): `state:open type:pr reviewed-by:octocat`
240
-
* Filter pull requests by the specific user [requested for review](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/requesting-a-pull-request-review): `state:open type:pr review-requested:octocat`
241
-
* Filter pull requests that someone has asked you directly to review: `state:open type:pr user-review-requested:@me`
242
-
* Filter pull requests by the team requested for review: `state:open type:pr team-review-requested:github/docs`
235
+
* Filter pull requests that haven't been [reviewed](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews) yet: `state:open is:pr review:none`
236
+
* Filter pull requests that [require a review](/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches#require-pull-request-reviews-before-merging) before they can be merged: `state:open is:pr review:required`
237
+
* Filter pull requests that a reviewer has approved: `state:open is:pr review:approved`
238
+
* Filter pull requests in which a reviewer has asked for changes: `state:open is:pr review:changes_requested`
239
+
* Filter pull requests by [reviewer](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews): `state:open is:pr reviewed-by:octocat`
240
+
* Filter pull requests by the specific user [requested for review](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/requesting-a-pull-request-review): `state:open is:pr review-requested:octocat`
241
+
* Filter pull requests that someone has asked you directly to review: `state:open is:pr user-review-requested:@me`
242
+
* Filter pull requests by the team requested for review: `state:open is:pr team-review-requested:github/docs`
243
243
* Filter for pull requests that are linked to an issue that the pull request may close: `linked:issue`
244
244
* Filter pull requests by state of [merging](/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/about-pull-request-merges): `is:merged` or `is:unmerged`
245
245
@@ -274,7 +274,7 @@ You can send the URL that issues generates to any user, and they'll be able to s
274
274
For example, if you filter on issues assigned to Hubot, and sort on the oldest open issues, your URL would update to something like the following:
0 commit comments