github.onDeploymentSucceeded emits deployment statuses with state: "success".
automations/github-deployment-succeeded.automation.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Run when a GitHub deployment status succeeds.
github.onDeploymentSucceeded emits deployment statuses with state: "success".
import { automation } from "automate.ax"
import { github } from "automate.ax/github"
export default automation("GitHub deployment succeeded", () => {
const event = github.onDeploymentSucceeded()
// Update the GitHub deployment in the release dashboard.
})