jira_transition_issue
Transition a Jira issue to a new workflow status such as To Do, In Progress, or Done. Supports adding a comment and setting resolution.
Instructions
Transitions a Jira issue to a new workflow status (e.g., "To Do" -> "In Progress" -> "Done"). Use jira_get_transitions first to discover available transitions. Supports adding a comment and setting resolution during the transition.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| format | No | Comment format: "markdown" (converts Markdown to ADF), "adf" (use as-is ADF object), "plain" (converts plain text to ADF with basic formatting). Default: "markdown" | markdown |
| comment | No | Optional comment to add when transitioning the issue | |
| issueKey | Yes | Issue key to transition (e.g., PROJECT-123) | |
| resolution | No | Resolution name when transitioning to a resolved/done status (e.g., "Done", "Fixed") | |
| transitionId | No | ID of the transition to perform. Use jira_get_transitions to find available transition IDs. | |
| transitionName | No | Name of the transition to perform (e.g., "In Progress", "Done"). Case-insensitive. Alternative to transitionId. |