github.onDeploymentCreated emits deployment webhooks with action: "created".
automations/on-github-deployment.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 is created.
github.onDeploymentCreated emits deployment webhooks with action: "created".
import { automation } from "automate.ax"
import { github } from "automate.ax/github"
export default automation("GitHub deployment created", () => {
const event = github.onDeploymentCreated()
// Update the GitHub deployment in the release dashboard.
})