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