> ## 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.

# On GitHub check suite completed

> Start an automation when a GitHub check suite completes.

`github.onCheckSuiteCompleted` starts an automation for every completed check suite, regardless of conclusion.

```ts automations/github-check-suite-completed.automation.ts theme={null}
import { automation } from "automate.ax"
import { github } from "automate.ax/github"

export default automation("GitHub check suite completed", () => {
  const event = github.onCheckSuiteCompleted()
  github.getCombinedCommitStatus({
    owner: event.repository.owner.login,
    repository: event.repository.name,
    ref: event.check_suite.head_sha,
  })
})
```

Returns the typed payload with `action: "completed"`. Use a conclusion-specific trigger when possible. Requires Checks read permission.
