create_sprint
Initiate a new development sprint by defining title, description, start and end dates, and associated issue IDs for efficient project management in GitHub Projects V2.
Instructions
Create a new development sprint
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | Yes | ||
| endDate | Yes | ||
| issueIds | Yes | ||
| startDate | Yes | ||
| title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"type": "string"
},
"endDate": {
"type": "string"
},
"issueIds": {
"type": "string"
},
"startDate": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"title",
"description",
"startDate",
"endDate",
"issueIds"
],
"type": "object"
}