New Depot CI triggers: repository_dispatch, pull_request_review, and deployment_status
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 withtypes, and read the dispatch'sactionandclient_payloadfromgithub.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.