mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-04-29 03:46:59 +00:00
Per action.yml of the action, the token is required.
e89da1a8cd/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 }}
|