copia-cli label create
copia-cli label create [flags]
Create a new label in a Copia repository. The –name and –color flags are required.
Options
-c,--color <string>- Label color in hex (e.g. #e11d48)
-d,--description <string>- Label description
-n,--name <string>- Label name (required)
Options inherited from parent commands
-
--host <string> - Target Copia host
-R,--repo <string>- Select repository (owner/repo)
-
--token <string> - Authentication token
Examples
# Create a label
$ copia-cli label create --name bug --color "#e11d48"
# Create a label with a description
$ copia-cli label create --name feature --color "#0969da" --description "New feature"