github.onDeploymentStarted emits deployment statuses with state: "in_progress".
automations/github-deployment-started.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 becomes in progress.
github.onDeploymentStarted emits deployment statuses with state: "in_progress".
import { automation } from "automate.ax"
import { github } from "automate.ax/github"
export default automation("GitHub deployment started", () => {
const event = github.onDeploymentStarted()
// Update the GitHub deployment in the release dashboard.
})