Skip to content

Commit 8dd2b5f

Browse files
authored
Adding config for reviewers lottery. (#299)
* Adding config for reviewers lottery. Copied from ros2_control repo. * Create reviewer_lottery.yml
1 parent 79e050a commit 8dd2b5f

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed

.github/reviewer-lottery.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
groups:
2+
# Default reviewers for all pull requests.
3+
# Usually, at least on of the maintainers should approve PR before merging.
4+
# The best is if two maintainers do that.
5+
- name: maintainers # name of the group
6+
reviewers: 2 # how many reviewers do you want to assign?
7+
internal_reviewers: 1 # how many reviewers do you want to assign when the PR author belongs to this group?
8+
usernames: # github usernames of the reviewers
9+
- bmagyar
10+
- destogl
11+
12+
# Reviewers group to get broader feedback.
13+
- name: reviewers
14+
reviewers: 5
15+
usernames:
16+
- rosterloh
17+
- kellyprankin
18+
- progtologist
19+
- arne48
20+
- DasRoteSkelett
21+
- a10263790
22+
- Serafadam
23+
- harderthan
24+
- jaron-l
25+
- malapatiravi
26+
- erickisos
27+
- ShawnSchaerer
28+
- Briancbn
29+
- TomoyaFujita2016
30+
- homalozoa
31+
- anfemosa
32+
- jackcenter
33+
- VX792
34+
- mhubii
35+
- livanov93
36+
- aprotyas
37+
- peterdavidfagan
38+
- UsamaHamayun1
39+
- duringhof
40+
- bijoua29
41+
- kasiceo
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Reviewer lottery
2+
on:
3+
pull_request_target:
4+
types: [opened, ready_for_review, reopened]
5+
6+
jobs:
7+
test:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v1
11+
- uses: uesteibar/reviewer-lottery@v2
12+
with:
13+
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)