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

> Start an automation when a workflow run completes successfully.

`onGitHubWorkflowRunSucceeded` emits completed workflow runs whose conclusion is `"success"`.

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

export default automation("Watch successful GitHub workflows", () => {
  const event = onGitHubWorkflowRunSucceeded()
  event.transform(({ workflow_run }) => ({
    runId: workflow_run.id,
    url: workflow_run.html_url,
  }))
})
```

Optional static `account` defaults to the project binding. Returns `Signal<GitHubWorkflowRunSucceededEvent>` with `action: "completed"`, `workflow_run.conclusion: "success"`, and the complete typed payload.
