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

> Start an automation from any GitHub Actions workflow-run activity.

`onGitHubWorkflowRunEvent` exposes the broad GitHub `workflow_run` webhook family. Use a semantic trigger when you care about one lifecycle stage or conclusion.

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

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

Optional static `account` defaults to the project binding. Returns `Signal<GitHubWorkflowRunEvent>`, GitHub's typed requested, in-progress, and completed webhook union. The installation needs Actions read permission and repository access. Workflow job events are a separate GitHub webhook family and do not emit this trigger.
