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

# Request GitHub pull request reviewers

> Request user or team reviews on a GitHub pull request.

`github.requestPullRequestReviewers` requests reviews from users or organization teams.

```ts automations/request-github-review.automation.ts theme={null}
import { automation } from "automate.ax"
import { github } from "automate.ax/github"

export default automation("Request GitHub review", () => {
  github.requestPullRequestReviewers({
    owner: "SentsCo",
    pullRequestNumber: 42,
    repository: "automate.ax",
    reviewers: ["octocat"],
    teamReviewers: ["platform"],
  })
})
```

Provide the repository and `pullRequestNumber`, plus `reviewers` user logins, `teamReviewers` team slugs, or both. Returns the pull request's `id` and `state`. GitHub notifies newly requested reviewers. Requires Pull requests write permission.
