jira_link_create
Create typed links between JIRA issues, such as Blocks or Relates, by specifying the link type, source (inward), and target (outward) issue keys.
Instructions
Create a typed link between two JIRA issues (e.g. Blocks, Relates). link_type is the type name (list options with jira_link_types); inward is the source issue and outward the target. To set hierarchy (Epic → Story / Story → Sub-task) use jira_link_parent instead. Returns YAML {status: ok}. Set dry_run: true to preview the request that would be sent (method, path, body) without creating the link. Mirrors omni-dev atlassian jira link create.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| inward | Yes | Source (inward) issue key — e.g. for `Blocks`, the issue doing the blocking. | |
| dry_run | No | When true, validate and return the would-be request (method, path, body) without creating the link. Defaults to `false`. | |
| outward | Yes | Target (outward) issue key — e.g. for `Blocks`, the issue being blocked. | |
| link_type | Yes | Link type name, e.g. `Blocks` (use `jira_link_types` to list options). |