Skip to content

Commit e51930f

Browse files
authored
chore: add multi-approvers check (googleapis#1612)
1 parent 2f2c269 commit e51930f

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

.github/workflows/members.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[
2+
{"login":"suztomo"},
3+
{"login":"dangazineu"},
4+
{"login":"ldetmer"},
5+
{"login":"zhumin8"},
6+
{"login":"blakeli0"},
7+
{"login":"lqiu96"},
8+
{"login":"jinseopkim0"},
9+
{"login":"meltsufin"},
10+
{"login":"diegomarquezp"},
11+
{"login":"burkedavison"},
12+
{"login":"mpeddada1"},
13+
{"login":"JoeWang1127"},
14+
{"login":"kmaydeo"},
15+
{"login":"lsirac"},
16+
{"login":"aeitzman"}
17+
]
+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: 'multi-approvers'
2+
3+
on:
4+
pull_request:
5+
types:
6+
- 'opened'
7+
- 'edited'
8+
- 'reopened'
9+
- 'synchronize'
10+
- 'ready_for_review'
11+
- 'review_requested'
12+
- 'review_request_removed'
13+
pull_request_review:
14+
types:
15+
- 'submitted'
16+
- 'dismissed'
17+
18+
permissions:
19+
actions: 'write'
20+
contents: 'read'
21+
pull-requests: 'read'
22+
23+
concurrency:
24+
group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}'
25+
cancel-in-progress: true
26+
27+
jobs:
28+
multi-approvers:
29+
uses: 'abcxyz/pkg/.github/workflows/multi-approvers.yml@main'
30+
with:
31+
org-members-path: '.github/workflows/members.json'

0 commit comments

Comments
 (0)