Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Identify Old Test Execution Issues: Use Jira's search functionality to locate Test Execution issues older than a specific date. For example:

    Code Block
    issuetype = "Test Execution" AND created < "YYYY-MM-DD"

    Replace YYYY-MM-DD with the desired cut-off date.

  2. Bulk Delete via Jira UI:

    • Perform the search in Jira.
    • Click Tools > Bulk Change > Delete Issues.
    • Follow the prompts to delete the selected issues.

  3. Using Jira REST API: For automation or advanced workflows, use Jira's REST API to delete Test Execution issues. For example:

    Code Block
    DELETE /api/2/issue/{issueIdOrKey}

    Replace {issueIdOrKey} with the specific issue key or ID of the Test Execution issue.

...