14 lines
391 B
YAML
14 lines
391 B
YAML
name: 'Automate assigning team for review.'
|
|
on:
|
|
pull_request:
|
|
types: [ opened ]
|
|
jobs:
|
|
add-reviews:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check config and assign reviews
|
|
uses: acq688/Request-Reviewer-For-Team-Action@v1.1
|
|
with:
|
|
config: ".github/automate-team-review-assignment-config.yml"
|
|
GITHUB_TOKEN: ${{ secrets.PAT_FOR_ACTIONS }}
|