transition_jira_issue
Move a Jira issue to a new status by specifying the issue key and transition ID, optionally adding comments or updating fields during the process.
Instructions
Transition a Jira issue to a new status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment | No | Comment to add during transition (optional) | |
fields | No | Additional fields to update during transition (optional) | |
issue_key | Yes | The issue key (e.g., PROJECT-123) | |
transition_id | Yes | ID of the transition to perform (get IDs using get_transitions) |
Input Schema (JSON Schema)
{
"properties": {
"comment": {
"description": "Comment to add during transition (optional)",
"type": "string"
},
"fields": {
"description": "Additional fields to update during transition (optional)",
"type": "object"
},
"issue_key": {
"description": "The issue key (e.g., PROJECT-123)",
"type": "string"
},
"transition_id": {
"description": "ID of the transition to perform (get IDs using get_transitions)",
"type": "string"
}
},
"required": [
"issue_key",
"transition_id"
],
"type": "object"
}