create_milestone
Enhance project tracking by setting milestones with titles, descriptions, and due dates. Integrates with GitHub Projects V2 for streamlined workflow management.
Instructions
Create a new milestone
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | ||
dueDate | No | ||
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"type": "string"
},
"dueDate": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"title",
"description"
],
"type": "object"
}