Skip to main content

Documentation Index

Fetch the complete documentation index at: https://qawolf-mktg-5566-document-qawolfci-sdk.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Use this guide if your CI system cannot run Node.js. This includes environments such as ArgoCD, locked-down runners, and minimal containers.
If your CI system supports Node.js, use Other CI (Node) instead.
Make sure you have:
  • A CI pipeline that runs after a successful deployment.
  • The ability to make HTTP requests from your CI environment (e.g. curl).
  • Admin access to your CI system’s secret or environment variable storage.
  • At least one QA Wolf environment already configured.
  • A QA Wolf API key

Find the QAWOLF_API_KEY

1
Open the Workspace name dropdown in QA Wolf and click Workspace Settings.
2
Choose Integrations and click the icon to the right of API Key under API Access.
Store the key as a secret in your CI system named QAWOLF_API_KEY.

Add the deploy notification to your pipeline

Add a step to your CI pipeline that runs after your deployment is healthy:
curl -X POST https://app.qawolf.com/api/webhooks/deploy_success \
  -H "Authorization: Bearer $QAWOLF_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "branch": "$GIT_BRANCH",
    "sha": "$GIT_COMMIT_SHA",
    "deployment_type": "staging",
    "hosting_service": "GitHub"
  }'
Replace $GIT_BRANCH and $GIT_COMMIT_SHA with the environment variable names your CI system provides for the current branch and commit SHA. Replace deployment_type with the value your QA Wolf representative provides. Set hosting_service to where your code is hosted — "GitHub" or "GitLab" — not where your pipeline runs.
A 200 response does not guarantee a run was created. Inspect the response body to confirm. See webhooks/deploy_success for full response details.

Verify the integration

1
Trigger your CI pipeline with a new deployment.
2
Confirm the notify step completes without errors.
3
Open QA Wolf and confirm a new run appears under the expected environment.
Last modified on May 28, 2026