gh issue edit {<numbers> | <urls>} [flags]
Edit one or more issues within the same repository.
Editing issues' projects requires authorization with the project scope.
To authorize, run gh auth refresh -s project.
The --add-assignee and --remove-assignee flags both support
the following special values:
@me: assign or unassign yourself@copilot: assign or unassign Copilot (not supported on GitHub Enterprise Server)--add-assignee <login>--add-label <name>--add-project <title>-b,
--body <string>-F,
--body-file <file>-m,
--milestone <name>--remove-assignee <login>--remove-label <name>--remove-milestone--remove-project <title>-t,
--title <string>-R,
--repo <[HOST/]OWNER/REPO>$ 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-assignee "@copilot"
$ gh issue edit 23 --add-project "Roadmap" --remove-project v1,v2
$ gh issue edit 23 --milestone "Version 1"
$ gh issue edit 23 --remove-milestone
$ gh issue edit 23 --body-file body.txt
$ gh issue edit 23 34 --add-label "help wanted"