Integrations

Connect OMG QA to where your team already works

Findings don't live in a vacuum. OMG QA connects to GitHub, Jira, GitLab, Azure DevOps, and Slack โ€” each over OAuth with a verified inbound webhook, no long-lived tokens. A finding stays in sync with the issue, work item, or merge request it maps to, and the right channel hears about it. You connect in your workspace under Settings โ†’ Integrations.

๐Ÿ”Œ Connect (OAuth) โ†’ ๐Ÿ” Two-way sync โ†’ โœ… Retest on merge ยท notify out

โއ GitHub

Connect through a one-click GitHub App โ€” no personal access tokens, no manual webhooks. Once installed on the repos you choose:

Full GitHub setup guide โ†’

๐ŸŸฆ Jira

Two-way sync between findings and Jira issues:

๐ŸฆŠ GitLab

Mirror the GitHub flow on GitLab:

๐Ÿ”ท Azure DevOps

Two-way sync between findings and ADO work items:

Ingest test results from Azure Pipelines โ€” no GitHub needed. After your tests write a JUnit/TRX report, POST it to the import endpoint; OMG QA opens a run, turns failures into findings, and feeds flaky-test detection. The endpoint auto-detects JUnit, TRX, NUnit & Allure.

# azure-pipelines.yml โ€” after the test step - script: | curl -sS -X POST \ "https://api.omgqa.com/api/v1/projects/$(OMGQA_PROJECT_ID)/test-runs/import?format=junit&branch=$(Build.SourceBranchName)&commit=$(Build.SourceVersion)&ciUrl=$(Build.BuildUri)" \ -H "Authorization: Bearer $(OMGQA_API_KEY)" \ -H "Content-Type: application/xml" \ --data-binary @"$(System.DefaultWorkingDirectory)/test-results/junit.xml" displayName: Send test results to OMG QA condition: always()

Create a project-scoped API key under Account โ†’ API keys and store it as the secret pipeline variable OMGQA_API_KEY.

๐Ÿ’ฌ Slack

Keep the team in the loop and let them act without leaving Slack:

How they connect. Each connector uses OAuth and a verified inbound webhook; secrets are encrypted at rest and OMG QA never holds a long-lived password. Driving findings from an AI agent instead? See the MCP guide. Prefer plain HTTP? Everything is in the API reference.

OMG QA โ€” Capture Every Finding. Fix Faster.

Documentation ยท API Reference ยท MCP Guide ยท Home