.nh .TH "GH-PR-EDIT" "1" "Mar 2024" "" "GitHub CLI manual" .SH NAME .PP gh-pr-edit - Edit a pull request .SH SYNOPSIS .PP \fBgh pr edit [ | | ] [flags]\fR .SH DESCRIPTION .PP Edit a pull request. .PP Without an argument, the pull request that belongs to the current branch is selected. .PP Editing a pull request's projects requires authorization with the \fBproject\fR scope. To authorize, run \fBgh auth refresh -s project\fR\&. .SH OPTIONS .TP \fB--add-assignee\fR \fB\fR Add assigned users by their login. Use "@me" to assign yourself. .TP \fB--add-label\fR \fB\fR Add labels by name .TP \fB--add-project\fR \fB\fR Add the pull request to projects by name .TP \fB--add-reviewer\fR \fB\fR Add reviewers by their login. .TP \fB-B\fR, \fB--base\fR \fB\fR Change the base branch for this pull request .TP \fB-b\fR, \fB--body\fR \fB\fR Set the new body. .TP \fB-F\fR, \fB--body-file\fR \fB\fR Read body text from file (use "-" to read from standard input) .TP \fB-m\fR, \fB--milestone\fR \fB\fR Edit the milestone the pull request belongs to by name .TP \fB--remove-assignee\fR \fB\fR Remove assigned users by their login. Use "@me" to unassign yourself. .TP \fB--remove-label\fR \fB\fR Remove labels by name .TP \fB--remove-project\fR \fB\fR Remove the pull request from projects by name .TP \fB--remove-reviewer\fR \fB\fR Remove reviewers by their login. .TP \fB-t\fR, \fB--title\fR \fB\fR Set the new title. .SH OPTIONS INHERITED FROM PARENT COMMANDS .TP \fB-R\fR, \fB--repo\fR \fB<[HOST/]OWNER/REPO>\fR Select another repository using the [HOST/]OWNER/REPO format .SH EXAMPLE .EX $ gh pr edit 23 --title "I found a bug" --body "Nothing works" $ gh pr edit 23 --add-label "bug,help wanted" --remove-label "core" $ gh pr edit 23 --add-reviewer monalisa,hubot --remove-reviewer myorg/team-name $ gh pr edit 23 --add-assignee "@me" --remove-assignee monalisa,hubot $ gh pr edit 23 --add-project "Roadmap" --remove-project v1,v2 $ gh pr edit 23 --milestone "Version 1" .EE .SH SEE ALSO .PP \fBgh-pr(1)\fR