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

     1  ## lab issue edit
     2  
     3  Edit or update an issue
     4  
     5  ```
     6  lab issue edit [remote] <id>[:<comment_id>] [flags]
     7  ```
     8  
     9  ### Examples
    10  
    11  ```
    12  lab issue edit 14
    13  lab issue edit 14:2065489
    14  lab issue edit 14 -a johndoe --unassign jackdoe
    15  lab issue edit 14 -m "new title"
    16  lab issue edit 14 -m "new title" -m "new desc"
    17  lab issue edit 14 -l new_label --unlabel old_label
    18  lab issue edit --milestone "NewYear"
    19  lab issue edit --force-linebreak
    20  lab issue edit --delete-note 14:2065489
    21  ```
    22  
    23  ### Options
    24  
    25  ```
    26    -m, --message stringArray   use the given <msg>; multiple -m are concatenated as separate paragraphs
    27    -l, --label strings         add the given label(s) to the issue
    28        --unlabel strings       remove the given label(s) from the issue
    29    -a, --assign strings        add an assignee by username
    30        --unassign strings      remove an assignee by username
    31        --milestone string      set milestone
    32        --force-linebreak       append 2 spaces to the end of each line to force markdown linebreaks
    33        --delete-note           delete the given note; must be provided in <issueID>:<noteID> format
    34    -h, --help                  help for edit
    35  ```
    36  
    37  ### Options inherited from parent commands
    38  
    39  ```
    40        --debug      Enable debug logging level
    41        --no-pager   Do not pipe output into a pager
    42        --quiet      Turn off any sort of logging. Only command output is printed
    43  ```
    44  
    45  ### SEE ALSO
    46  
    47  * [lab issue](lab_issue.md)	 - Describe, list, and create issues
    48  
    49  ###### Auto generated by spf13/cobra on 27-Jun-2022