> ## 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 workflow run completed

> Start an automation when a workflow run completes with any conclusion.

`onGitHubWorkflowRunCompleted` emits every `"completed"` workflow run, regardless of conclusion.

```ts automations/watch-completed-github-workflows.automation.ts theme={null}
import { automation } from "automate.ax"
import { onGitHubWorkflowRunCompleted } from "automate.ax/github"

export default automation("Watch completed GitHub workflows", () => {
  const event = onGitHubWorkflowRunCompleted()
  event.transform(({ workflow_run }) => ({
    conclusion: workflow_run.conclusion,
    runId: workflow_run.id,
  }))
})
```

Optional static `account` defaults to the project binding. Returns `Signal<GitHubWorkflowRunCompletedEvent>` with `action: "completed"`, a provider conclusion, and complete typed run data. Successful, failed, and cancelled runs also emit their narrower semantic trigger when subscribed.
