GH-SEARCH-ISSUES(1) | GitHub CLI manual | GH-SEARCH-ISSUES(1) |
gh-search-issues - Search for issues
gh search issues [<query>] [flags]
Search for issues on GitHub.
The command supports constructing queries using the GitHub search syntax, using the parameter and qualifier flags, or a combination of the two.
GitHub search syntax is documented at:
⟨https://docs.github.com/search-github/searching-on-github/searching-issues-and-pull-requests⟩
# search issues matching set of keywords "readme" and "typo" $ gh search issues readme typo # search issues matching phrase "broken feature" $ gh search issues "broken feature" # search issues and pull requests in cli organization $ gh search issues --include-prs --owner=cli # search open issues assigned to yourself $ gh search issues --assignee=@me --state=open # search issues with numerous comments $ gh search issues --comments=">100" # search issues without label "bug" $ gh search issues -- -label:bug # search issues only from un-archived repositories (default is all repositories) $ gh search issues --owner github --archived=false
gh-search(1)
Nov 2024 |