# New Depot CI triggers: repository_dispatch, pull_request_review, and deployment_status (https://depot.dev/changelog/2026-07-01-new-ci-triggers)

> Published 2026-07-01

Depot CI now supports three more GitHub Actions triggers that were previously unsupported:

* `repository_dispatch` — start a workflow from an external system (like a Vercel deployment) through the GitHub API, with no polling or relay of your own. Filter by event type with `types`, and read the dispatch's `action` and `client_payload` from `github.event`. Runs execute on your default branch, where GitHub delivers the event.
* `pull_request_review` — run when a review is submitted, edited, or dismissed.
* `deployment_status` — run against a deployed commit. A status that marks a deployment inactive doesn't start a run.

```yaml
on:
  repository_dispatch:
    types: [vercel.deployment.success]
```

See the [Depot CI compatibility docs](/docs/ci/compatibility) for the full list of supported triggers.

## For AI Agents

The full site index is at [llms.txt](https://depot.dev/llms.txt). Append `.md` to any documentation, blog, changelog, or customer URL to fetch its markdown source directly.