update_milestone
Modify a GitHub milestone by updating its title, description, due date, or state using specified parameters to manage project timelines effectively.
Instructions
Update a GitHub milestone
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
dueDate | Yes | ||
milestoneId | Yes | ||
state | No | ||
title | No |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"type": "string"
},
"dueDate": {
"type": "string"
},
"milestoneId": {
"type": "string"
},
"state": {
"enum": [
"open",
"closed"
]
},
"title": {
"type": "string"
}
},
"required": [
"milestoneId",
"dueDate"
],
"type": "object"
}