copia-cli issue edit
copia-cli issue edit <number> [flags]
Edit an issue’s title, body, labels, assignees, or milestone.
Options
-
--add-label <strings> - Add labels
-a,--assignee <strings>- Set assignees
-b,--body <string>- Set body
-m,--milestone <int> (default 0)- Set milestone ID
-t,--title <string>- Set title
Options inherited from parent commands
-
--host <string> - Target Copia host
-R,--repo <string>- Select repository (owner/repo)
-
--token <string> - Authentication token
Examples
# Edit the title
$ copia-cli issue edit 12 --title "New title"
# Add labels
$ copia-cli issue edit 12 --add-label bug --add-label urgent
# Set assignees
$ copia-cli issue edit 12 --assignee john --assignee jane
# Set milestone
$ copia-cli issue edit 12 --milestone 1