RequestReviewFromUser is an Github action that takes a list of users and assigns them as reviewer to the specified PR. The specified users must be collaborators of the repository.
RequestReviewFromUser takes the following inputs:
| Name | Required | Default | Description |
|---|---|---|---|
| owner | no | github.repository_owner | Name of repo owner |
| name | no | github.repository | Name of the repo |
| token | no | github.token | Token used for REST calls. Only needed to increase rate limits, can be replaced with empty string, but might lead to rate limit errors. |
| ID | no | github.event.pull_request.number | ID of the PR to get modified files from |
| separator | no | null | Separator used when multiple users are provided. |
| user | no | null | User(s) to request review from. Separated by the specified separator if multiple. |
| alwaysRequestAll | no | false | Request review from all provided users, even if they got previously removed from review by a maintainer. |