Import test results into Xray with this GitHub action, ideal for founders using Jira.
60 stars22 forksTypeScriptUpdated 6/1/2026100% free ยท open source
What it does
Automates the import of test results into Xray, a test management tool integrated with Jira, streamlining your testing and project management workflow.
When to use it
โขWhen you need to track and manage test cases directly within your Jira project
โขWhen automating testing is part of your CI/CD pipeline and you use Jira for project management
โขWhen you want to sync test results with your Jira issues for clearer project visibility
Quick start
1Create a GitHub repository for your project and set up a GitHub Actions workflow
2Install and configure the xray-action in your workflow to connect with your Xray instance
3Define the test results you want to import and map them to the appropriate Xray fields
4Run your workflow to automatically import test results into Xray
Ready-to-paste prompt
name: Import Test Results
on:
push:
branches: [ main ]
jobs:
import-test-results:
runs-on: ubuntu-latest
steps:
- name: Import Test Results into Xray
uses: mikepenz/xray-action@v1