jira_link_parent
Sets a JIRA issue's parent to define hierarchical relationships between epics, stories, and sub-tasks. Includes dry-run mode to preview without making changes.
Instructions
Set a JIRA issue's parent — the system parent field for Epic → Story / Story → Sub-task hierarchy, distinct from the relationship links created by jira_link_create. parent is the parent issue key (e.g. the epic); child is the issue placed under it. Returns YAML {status: ok}. Set dry_run: true to preview the request that would be sent (method, path, body) without setting the parent. Mirrors omni-dev atlassian jira link parent.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| child | Yes | Child issue key to place under the parent. | |
| parent | Yes | Parent issue key (e.g. the epic). | |
| dry_run | No | When true, validate and return the would-be request (method, path, body) without setting the parent. Defaults to `false`. |