f9343e62fd
CodeQL / Analyze (go) (push) Has been cancelled
CodeQL / Analyze (actions) (push) Has been cancelled
Docker / build (push) Has been cancelled
Build and Test Go Project / build (macos-latest) (push) Has been cancelled
Build and Test Go Project / build (ubuntu-latest) (push) Has been cancelled
Build and Test Go Project / build (windows-latest) (push) Has been cancelled
GoReleaser Release / release (push) Has been cancelled
License Check / license-check (push) Has been cancelled
* rename tooling * fix double tool
52 lines
1.4 KiB
Plaintext
52 lines
1.4 KiB
Plaintext
{
|
|
"annotations": {
|
|
"title": "Write operations on repository labels.",
|
|
"readOnlyHint": false
|
|
},
|
|
"description": "Perform write operations on repository labels. To set labels on issues, use the 'update_issue' tool.",
|
|
"inputSchema": {
|
|
"properties": {
|
|
"color": {
|
|
"description": "Label color as 6-character hex code without '#' prefix (e.g., 'f29513'). Required for 'create', optional for 'update'.",
|
|
"type": "string"
|
|
},
|
|
"description": {
|
|
"description": "Label description text. Optional for 'create' and 'update'.",
|
|
"type": "string"
|
|
},
|
|
"method": {
|
|
"description": "Operation to perform: 'create', 'update', or 'delete'",
|
|
"enum": [
|
|
"create",
|
|
"update",
|
|
"delete"
|
|
],
|
|
"type": "string"
|
|
},
|
|
"name": {
|
|
"description": "Label name - required for all operations",
|
|
"type": "string"
|
|
},
|
|
"new_name": {
|
|
"description": "New name for the label (used only with 'update' method to rename)",
|
|
"type": "string"
|
|
},
|
|
"owner": {
|
|
"description": "Repository owner (username or organization name)",
|
|
"type": "string"
|
|
},
|
|
"repo": {
|
|
"description": "Repository name",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"method",
|
|
"owner",
|
|
"repo",
|
|
"name"
|
|
],
|
|
"type": "object"
|
|
},
|
|
"name": "label_write"
|
|
} |