Zephyr: Create Test Execution Issue Link
zephyr_create_test_execution_issue_linkCreate a link between a Jira issue and a Zephyr test execution to associate issues with test runs.
Instructions
Create a new link between a Jira issue and a Test Execution in Zephyr
Toolset: Test Executions
Examples:
Create a link between the test execution with key SA-E40 and the Jira Issue ID 10100
{
"testExecutionIdOrKey": "SA-E40",
"issueId": 10100
}Expected Output: The link between Test Execution and Jira issue should be created, but no output is expected.
Create a link between the test execution with ID 1 and the Jira Issue ID 20050
{
"testExecutionIdOrKey": "1",
"issueId": 20050
}Expected Output: The link between Test Execution and Jira issue should be created, but no output is expected.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issueId | Yes | The Jira issue ID | |
| testExecutionIdOrKey | Yes | The ID or key of the test execution. Test execution keys are of the format [A-Z]+-E[0-9]+ |