github.com/zaquestion/lab@v0.25.1/docs/lab_mr_list.md (about)

     1  ## lab mr list
     2  
     3  List merge requests
     4  
     5  ```
     6  lab mr list [remote] [search] [flags]
     7  ```
     8  
     9  ### Examples
    10  
    11  ```
    12  lab mr list
    13  lab mr list "search terms"
    14  lab mr list --target-branch main
    15  lab mr list remote --target-branch main --label my-label
    16  lab mr list -l bug
    17  lab mr list -l close'
    18  lab mr list upstream -n 5
    19  lab mr list origin -a
    20  lab mr list --author johndoe
    21  lab mr list --assignee janedoe
    22  lab mr list --order created_at
    23  lab mr list --sort asc
    24  lab mr list --draft
    25  lab mr list --ready
    26  lab mr list --no-conflicts
    27  lab mr list -x 'test MR'
    28  lab mr list -r johndoe
    29  ```
    30  
    31  ### Options
    32  
    33  ```
    34    -l, --label strings          filter merge requests by label
    35    -s, --state string           filter merge requests by state (all/opened/closed/merged) (default "opened")
    36    -n, --number string          number of merge requests to return (default "10")
    37    -t, --target-branch string   filter merge requests by target branch
    38        --milestone string       list only MRs for the given milestone
    39    -a, --all                    list all MRs on the project
    40        --author string          list only MRs authored by $username
    41        --assignee string        list only MRs assigned to $username
    42        --order string           display order (updated_at/created_at) (default "updated_at")
    43        --sort string            sort order (desc/asc) (default "desc")
    44        --draft                  list MRs marked as draft
    45        --ready                  list MRs not marked as draft
    46        --no-conflicts           list only MRs that can be merged
    47        --conflicts              list only MRs that cannot be merged
    48    -x, --exact-match            match on the exact (case-insensitive) search terms
    49        --reviewer string        list only MRs with reviewer set to $username
    50    -h, --help                   help for list
    51  ```
    52  
    53  ### Options inherited from parent commands
    54  
    55  ```
    56        --debug      Enable debug logging level
    57        --no-pager   Do not pipe output into a pager
    58        --quiet      Turn off any sort of logging. Only command output is printed
    59  ```
    60  
    61  ### SEE ALSO
    62  
    63  * [lab mr](lab_mr.md)	 - Describe, list, and create merge requests
    64  
    65  ###### Auto generated by spf13/cobra on 27-Jun-2022