mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-08-17 04:36:05 +00:00
This commit update the actions "Auto Assign Author", "Auto Label PRs", and "Auto Request Review" Signed-off-by: Daniel Jiang <daniel.jiang@broadcom.com>
21 lines
471 B
YAML
21 lines
471 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
|