get_sprint_metrics
Extract progress metrics for a specific sprint, including task details, to analyze and optimize GitHub project workflows. Integrates with GitHub Projects V2 for efficient sprint management.
Instructions
Get progress metrics for a specific sprint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeIssues | Yes | ||
sprintId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"includeIssues": {
"type": "boolean"
},
"sprintId": {
"type": "string"
}
},
"required": [
"sprintId",
"includeIssues"
],
"type": "object"
}