> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Delete GitHub deployment

> Delete a deployment from a GitHub repository.

`github.deleteDeployment` deletes one deployment record.

```ts automations/delete-github-deployment.automation.ts theme={null}
import { automation } from "automate.ax"
import { github } from "automate.ax/github"

export default automation("Delete GitHub deployment", () => {
  github.deleteDeployment({
    deploymentId: 123456,
    owner: "SentsCo",
    repository: "automate.ax",
  })
})
```

Provide the repository and `deploymentId`. If the repository has multiple deployments, the target must already have an `inactive` status. GitHub permits the repository's sole deployment to be deleted regardless of status. Returns `{}` after deletion. Requires Deployments write permission.
