.nh .TH "GH-ISSUE-EDIT" "1" "Oct 2022" "" "GitHub CLI manual" .SH NAME .PP gh-issue-edit - Edit an issue .SH SYNOPSIS .PP \fB\fCgh issue edit { | } [flags]\fR .SH OPTIONS .TP \fB\fC--add-assignee\fR \fB\fC\fR Add assigned users by their login. Use "@me" to assign yourself. .TP \fB\fC--add-label\fR \fB\fC\fR Add labels by name .TP \fB\fC--add-project\fR \fB\fC\fR Add the issue to projects by name .TP \fB\fC-b\fR, \fB\fC--body\fR \fB\fC\fR Set the new body. .TP \fB\fC-F\fR, \fB\fC--body-file\fR \fB\fC\fR Read body text from file (use "-" to read from standard input) .TP \fB\fC-m\fR, \fB\fC--milestone\fR \fB\fC\fR Edit the milestone the issue belongs to by name .TP \fB\fC--remove-assignee\fR \fB\fC\fR Remove assigned users by their login. Use "@me" to unassign yourself. .TP \fB\fC--remove-label\fR \fB\fC\fR Remove labels by name .TP \fB\fC--remove-project\fR \fB\fC\fR Remove the issue from projects by name .TP \fB\fC-t\fR, \fB\fC--title\fR \fB\fC\fR Set the new title. .SH OPTIONS INHERITED FROM PARENT COMMANDS .TP \fB\fC-R\fR, \fB\fC--repo\fR \fB\fC<[HOST/]OWNER/REPO>\fR Select another repository using the [HOST/]OWNER/REPO format .SH EXAMPLE .PP .RS .nf $ gh issue edit 23 --title "I found a bug" --body "Nothing works" $ gh issue edit 23 --add-label "bug,help wanted" --remove-label "core" $ gh issue edit 23 --add-assignee "@me" --remove-assignee monalisa,hubot $ gh issue edit 23 --add-project "Roadmap" --remove-project v1,v2 $ gh issue edit 23 --milestone "Version 1" $ gh issue edit 23 --body-file body.txt .fi .RE .SH SEE ALSO .PP \fB\fCgh-issue(1)\fR