delete_label
Remove labels from GitLab projects to maintain organized issue tracking and project management by eliminating outdated or unnecessary categorization.
Instructions
Delete a label from a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID or URL-encoded path | |
| label_id | Yes | The ID or title of a project's label |
Input Schema (JSON Schema)
{
"properties": {
"label_id": {
"description": "The ID or title of a project's label",
"type": "string"
},
"project_id": {
"description": "Project ID or URL-encoded path",
"type": "string"
}
},
"required": [
"project_id",
"label_id"
],
"type": "object"
}