> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# On Vercel rolling release event

> Run an automation when Vercel reports rolling release event.

`vercel.onRollingReleaseEvent` starts an automation for any event in this Vercel lifecycle family.

```ts automations/on-rolling-release-event.automation.ts theme={null}
import { automation } from "automate.ax"
import { vercel } from "automate.ax/vercel"

export default automation("On Vercel rolling release event", () => {
  const event = vercel.onRollingReleaseEvent()
  event.transform((value) => ({
    projectId: value.payload.project.id,
    state: value.payload.rollingRelease.state,
    type: value.type,
  }))
})
```

## Input

The trigger accepts optional static `account` selection. Without it, Automate.ax uses the project's Vercel OAuth binding.

## Output

Every event includes `id`, `createdAt`, `region`, `type`, and `payload`. The union covers started, approved, completed, and aborted rollouts. Each payload includes the current rollout, stage configuration, deployments, and previous state when available.

## Provider behavior

Automate.ax verifies Vercel's signature, routes the event to the matching installation, and deduplicates each delivery by event ID.
