jira_link_remote_create
Create a remote link from a JIRA issue to an external resource using key, URL, and title. Supports dry run and optional global ID for updating.
Instructions
Add a remote (external URL) link to a JIRA issue — pointing out to a non-JIRA resource. url and title are required; summary, relationship, and global_id are optional (reusing an existing global_id updates that link instead of duplicating it). Returns YAML {status: ok, id}. Set dry_run: true to preview the request without creating it. Mirrors omni-dev atlassian jira link remote create.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | JIRA issue key (e.g., `PROJ-123`). | |
| url | Yes | External URL to link to. | |
| title | Yes | Link title (display text). | |
| dry_run | No | When true, validate and return the would-be request without creating the link. Defaults to `false`. | |
| summary | No | Optional summary shown under the title. | |
| global_id | No | Optional global id — reusing an existing one updates that link rather than creating a duplicate. | |
| relationship | No | Optional relationship label (e.g., `relates to`). |