jira_transition_issue
Update a JIRA issue's status by specifying the issue key and transition ID, with an optional comment for tracking the change.
Instructions
Transition an issue to a new status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment | No | Optional comment for the transition | |
issueKey | Yes | The JIRA issue key | |
transitionId | Yes | The transition ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"comment": {
"description": "Optional comment for the transition",
"type": "string"
},
"issueKey": {
"description": "The JIRA issue key",
"type": "string"
},
"transitionId": {
"description": "The transition ID",
"type": "string"
}
},
"required": [
"issueKey",
"transitionId"
],
"type": "object"
}