edit_issue
Replace an exact string in an issue's description or title to apply targeted corrections. Provide the issue ID, old string, new string, and enable replace_all for repeated occurrences.
Instructions
Edit an issue by replacing an exact string. Targets the description by default; pass field='title' for the title. Fails if old_string is missing or ambiguous (unless replace_all=true). Cheaper than update_issue for small changes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| field | No | Field to edit: 'description' (default) or 'title' | |
| identifier | Yes | Issue ID like PRO-42 | |
| new_string | Yes | Replacement string (must differ from old_string) | |
| old_string | Yes | Exact string to find. Must be unique unless replace_all is true. | |
| replace_all | No | Replace all occurrences (default false) |