remove_project_item
Remove specific items from GitHub projects by specifying project and item IDs to maintain organized and accurate task management.
Instructions
Remove an item from a GitHub project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
itemId | Yes | ||
projectId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"itemId": {
"type": "string"
},
"projectId": {
"type": "string"
}
},
"required": [
"projectId",
"itemId"
],
"type": "object"
}