jira_worklog_update
Update a JIRA worklog's time spent, start time, or comment by providing the issue key and worklog ID.
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`). |