We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bf7ed68 + c69f210 commit 5a2ec54Copy full SHA for 5a2ec54
pkg/cmd/pr/list/list.go
@@ -50,8 +50,19 @@ func NewCmdList(f *cmdutil.Factory, runF func(*ListOptions) error) *cobra.Comman
50
Use: "list",
51
Short: "List and filter pull requests in this repository",
52
Example: heredoc.Doc(`
53
+ List PRs authored by you
54
+ $ gh pr list --author @me
55
+
56
+ List PRs assigned to you
57
+ $ gh pr list --assignee @me
58
59
+ List PRs by label, combining multiple labels with AND
60
$ gh pr list --label bug --label "priority 1"
61
62
+ List PRs using search syntax
63
$ gh pr list --search "status:success review:required"
64
65
+ Open the list of PRs in a web browser
66
$ gh pr list --web
67
`),
68
Args: cmdutil.NoArgsQuoteReminder,
0 commit comments