forked from GoogleCloudPlatform/magic-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (36 loc) · 942 Bytes
/
request-reviewer.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: request-reviewer
permissions: read-all
on:
pull_request_target:
types:
- edited
- opened
- ready_for_review
- reopened
- synchronize
branches:
- 'main'
- 'FEATURE-BRANCH-*'
jobs:
request-review:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
permissions:
pull-requests: write
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '^1.20'
# Disable caching for now due to issues with large provider dependency caches
cache: false
- name: Build magician
run: |
cd .ci/magician
go build .
- name: Request reviewer
run: .ci/magician/magician request-reviewer ${{ github.event.pull_request.number }}