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

> Start an automation when a workflow run completes with failure.

`onGitHubWorkflowRunFailed` emits completed workflow runs whose conclusion is exactly `"failure"`.

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

export default automation("Watch failed GitHub workflows", () => {
  const event = onGitHubWorkflowRunFailed()
  event.transform(({ workflow_run }) => ({
    branch: workflow_run.head_branch,
    runId: workflow_run.id,
  }))
})
```

Optional static `account` defaults to the project binding. Returns `Signal<GitHubWorkflowRunFailedEvent>` with `action: "completed"`, `workflow_run.conclusion: "failure"`, and the complete typed payload. Other unsuccessful conclusions such as `timed_out`, `startup_failure`, or `action_required` emit the completed and broad triggers, not this one.
