jira_worklog_update
Update an existing JIRA worklog by issue key and worklog ID. Change time spent, start time, or comment—only fields you supply are modified, while omitted ones stay unchanged.
Instructions
Edit an existing JIRA worklog (by key + worklog_id; get the id from jira_worklog_list). Supply at least one of time_spent (JIRA duration, e.g. 1h 30m), started (ISO 8601), or comment; omitted fields keep their current value. Returns YAML {status: ok}. Mirrors omni-dev atlassian jira worklog edit.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | JIRA issue key (e.g., `PROJ-123`). | |
| comment | No | New plain-text comment. Omit to leave unchanged. | |
| started | No | New ISO 8601 start timestamp. Omit to leave unchanged. | |
| time_spent | No | New time spent (e.g., `1h 30m`, `2d`). Omit to leave unchanged. | |
| worklog_id | Yes | Worklog ID to update (from `jira_worklog_list`). |