Choose the occasion
A deployment trigger runs your flows exactly when the application changed, against the deploy that changed it, so prefer one where your pipeline can support it. The options, best first:- GitHub or GitLab deployments. QA Wolf learns the branch, the commit and the environment of every deploy. Many hosting providers, Vercel among them, already create these events.
deployment.reportStatus. A step in your pipeline reports the deploy to QA Wolf directly. Use it when your pipeline cannot create provider deployment events.- A schedule. Runs the flows hourly or daily. The only option that changes nothing in your pipeline.
Connect your code host
Provider deployment events reach QA Wolf through an installed integration, so connect one for the provider that hosts your pipeline.- GitHub — enable the integration from Workspace settings → Integrations, which installs the QA Wolf GitHub App. Select every repository that deploys: a repository the app does not cover sends no events.
- GitLab — the same settings page takes a GitLab group access token with the Maintainer role and the
apiscope. QA Wolf refuses a lesser token.
A connected integration and a pipeline that emits deployments are separate things. An integration can be connected while the pipeline creates no deployments at all, in which case QA Wolf hears nothing.
Decide what runs
Name the flows before you create the trigger:- A tag — every flow carrying it runs, and flows tagged later join automatically. The usual choice for a standing trigger.
- Named flows — a fixed set that changes only when you change the trigger.
- Generative selection — QA Wolf picks the flows from the pull request. Preview deployments only; see Generative flow selection.
Create a deployment trigger
A deployment trigger’s conditions say which deployments it fires for. Every condition supplied must match, and supplying none fires on every deployment the workspace reports.
A static environment usually needs only its own name, or a deploy-target pattern when its URL is stable and distinctive. A preview deployment needs a pattern matching the shape your pipeline actually emits —
pr-*, preview/*, review/*. Read your workflow for the shape rather than guessing a convention.
Give the trigger a name you will recognize later, the conditions above, and the action.
Create a schedule trigger
A schedule needs a cadence, an environment, and for a daily cadence a time and a timezone.
Set the timezone deliberately. A daily run in the wrong timezone fires during your business hours and looks like a malfunction.
Once created, the trigger reports
nextScheduledAt: when it next fires. Check that it matches what you asked for.