jira_update_issue
Updates a Jira issue by key, modifying only specified fields like summary, description, priority, assignee, labels, components, or parent. Accepts markdown, plain text, or ADF for descriptions.
Instructions
Updates an existing Jira issue by its key. Supports updating summary, description, priority, assignee, labels, and components. Description format is controlled by the "format" parameter (default: markdown). Only specified fields will be updated.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issueKey | Yes | Issue key to update | |
| summary | No | New summary | |
| description | No | New description. Accepts plain text or ADF object. | |
| priority | No | New priority | |
| assignee | No | New assignee account ID | |
| labels | No | New labels (replaces existing) | |
| components | No | New components (replaces existing) | |
| parent | No | New parent issue key (e.g., PROJECT-100). Set to empty string to remove the parent. | |
| returnIssue | No | When false, skip fetching full issue after update | |
| format | No | Description format: "markdown" (converts Markdown to ADF), "adf" (use as-is ADF object), "plain" (converts plain text to ADF with basic formatting). Default: "markdown" | markdown |