create_label
Generate and manage GitHub labels by defining name, color, and optional description, streamlining project organization and task categorization within GitHub Projects V2.
Instructions
Create a new GitHub label
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | Yes | ||
description | No | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"type": "string"
},
"description": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"color"
],
"type": "object"
}