🚀 Just launched: the Depot CI API
← Back to changelog

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.
on:
  repository_dispatch:
    types: [vercel.deployment.success]

See the Depot CI compatibility docs for the full list of supported triggers.