| title | description |
|---|---|
Preview branches |
Create isolated environments for each branch of your code, allowing you to test changes before merging to production. You can create preview branches manually or automatically from your git branches. |
The preview environment is special – you create branches from it. The branches you create live under the preview environment and have all the features you're used to from other environments (like staging or production). That means you can trigger runs, have schedules, test them, use Realtime, etc.
We recommend you automatically create a preview branch for each git branch when a Pull Request is opened and then archive it automatically when the PR is merged/closed.
The process to use preview branches looks like this:
- Create a preview branch
- Deploy to the preview branch (1+ times)
- Trigger runs using your Preview API key (
TRIGGER_SECRET_KEY) and the branch name (TRIGGER_PREVIEW_BRANCH). - Archive the preview branch when the branch is done.
There are two main ways to do this:
- Automatically: using GitHub Actions (recommended).
- Manually: in the dashboard and/or using the CLI.
We restrict the number of active preview branches (per project). You can archive a preview branch at any time (automatically or manually) to unlock another slot – or you can upgrade your plan.
Once archived you can still view the dashboard for the branch but you can't trigger or execute runs (or other write operations).
This limit exists because each branch has an independent concurrency limit. For the Cloud product these are the limits:
| Plan | Active preview branches |
|---|---|
| Free | 0 |
| Hobby | 5 |
| Pro | 20 (then paid for more) |
For full details see our pricing page.
Before we talk about how to deploy to preview branches, one important thing to understand is that you must set the TRIGGER_PREVIEW_BRANCH environment variable as well as the TRIGGER_SECRET_KEY environment variable.
When deploying to somewhere that supports process.env (like Node.js runtimes) you can just set the environment variables:
TRIGGER_SECRET_KEY="tr_preview_1234567890"
TRIGGER_PREVIEW_BRANCH="your-branch-name"If you're deploying somewhere that doesn't support process.env (like some edge runtimes) you can manually configure the SDK:
import { configure } from "@trigger.dev/sdk";
import { myTask } from "./trigger/myTasks";
configure({
secretKey: "tr_preview_1234567890", // WARNING: Never actually hardcode your secret key like this
previewBranch: "your-branch-name",
});
async function triggerTask() {
await myTask.trigger({ userId: "1234" }); // Trigger a run in your-branch-name
}This GitHub Action will:
- Automatically create a preview branch for your Pull Request (if the branch doesn't already exist).
- Deploy the preview branch.
- Archive the preview branch when the Pull Request is merged/closed. This only works if your workflow runs on closed PRs (
types: [opened, synchronize, reopened, closed]). If you omitclosed, branches won't be archived automatically.
name: Deploy to Trigger.dev (preview branches)
on:
pull_request:
types: [opened, synchronize, reopened, closed]
jobs:
deploy-preview:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Install dependencies
run: npm install
- name: Deploy preview branch
run: npx trigger.dev@latest deploy --env preview
env:
TRIGGER_ACCESS_TOKEN: ${{ secrets.TRIGGER_ACCESS_TOKEN }}For this workflow to work, you need to set the following secrets in your GitHub repository:
TRIGGER_ACCESS_TOKEN: A Trigger.dev personal access token (they start withtr_pat_). Learn how to create one and set it in GitHub.
Notice that the deploy command has --env preview at the end. We automatically detect the preview branch from the GitHub actions env var.
You can manually specify the branch using --branch <branch-name> in the deploy command, but this isn't required.
Creating and deploying a preview branch manually is easy:
npx trigger.dev@latest deploy --env previewThis will create and deploy a preview branch, automatically detecting the git branch. If for some reason the auto-detection doesn't work it will let you know and tell you do this:
npx trigger.dev@latest deploy --env preview --branch your-branch-nameYou can manually archive a preview branch with the CLI:
npx trigger.dev@latest preview archiveAgain we will try auto-detect the current branch. But you can specify the branch name with --branch <branch-name>.
From the "Preview branches" page you can create a branch:
You can also archive a branch:
You can set environment variables for "Preview" and they will get applied to all branches (existing and new). You can also set environment variables for a specific branch. If they are set for both then the branch-specific variables will take precedence.
These can be set manually in the dashboard, or automatically at deploy time using the syncEnvVars() or syncVercelEnvVars() build extensions.
Full instructions are in the syncEnvVars() documentation.
import { defineConfig } from "@trigger.dev/sdk";
// You will need to install the @trigger.dev/build package
import { syncEnvVars } from "@trigger.dev/build/extensions/core";
export default defineConfig({
//... other config
build: {
// This will automatically detect and sync environment variables
extensions: [
syncEnvVars(async (ctx) => {
// You can fetch env variables from a 3rd party service like Infisical, Hashicorp Vault, etc.
// The ctx.branch will be set if it's a preview deployment.
return await fetchEnvVars(ctx.environment, ctx.branch);
}),
],
},
});You need to set the VERCEL_ACCESS_TOKEN, VERCEL_PROJECT_ID and VERCEL_TEAM_ID environment variables. You can find these in the Vercel dashboard. Full instructions are in the syncVercelEnvVars() documentation.
The extension will automatically detect a preview branch deploy from Vercel and sync the appropriate environment variables.
import { defineConfig } from "@trigger.dev/sdk";
// You will need to install the @trigger.dev/build package
import { syncVercelEnvVars } from "@trigger.dev/build/extensions/core";
export default defineConfig({
//... other config
build: {
// This will automatically detect and sync environment variables
extensions: [syncVercelEnvVars()],
},
});



