mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-07-26 10:03:18 +00:00
Per action.yml of the action, the token is required. https://github.com/necojackarc/auto-request-review/blob/e89da1a8cd7c8c16d9de9c6e763290b6b0e3d424/action.yml#L8 Signed-off-by: Daniel Jiang <daniel.jiang@broadcom.com>
22 lines
516 B
YAML
22 lines
516 B
YAML
---
|
|
name: "Auto Request Review"
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [opened, ready_for_review, reopened]
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
auto-request-review:
|
|
name: Auto Request Review
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Request a PR review based on files types/paths, and/or groups the author belongs to
|
|
uses: necojackarc/auto-request-review@v0.13.0
|
|
with:
|
|
config: .github/auto-assignees.yml
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|