add_issues_to_sprint
Assign multiple GitHub issues to a specific sprint in a project using the sprint ID and issue IDs, streamlining sprint planning and task organization.
Instructions
Add issues to an existing sprint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issueIds | Yes | ||
sprintId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"issueIds": {
"items": {
"type": "string"
},
"type": "array"
},
"sprintId": {
"type": "string"
}
},
"required": [
"sprintId",
"issueIds"
],
"type": "object"
}