Skip to content

Commit

Permalink
Add reviewer Lottery to repository. (#151)
Browse files Browse the repository at this point in the history
* Add reviewer Lottery to repository.

Copied from ros2_control repo.

* Add list of reviewers

copied from ros2_control repo.
  • Loading branch information
destogl authored Feb 23, 2022
1 parent 1db6634 commit c9ab5c1
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/reviewer-lottery.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
groups:
# Default reviewers for all pull requests.
# Usually, at least on of the maintainers should approve PR before merging.
# The best is if two maintainers do that.
- name: maintainers # name of the group
reviewers: 2 # how many reviewers do you want to assign?
internal_reviewers: 1 # how many reviewers do you want to assign when the PR author belongs to this group?
usernames: # github usernames of the reviewers
- bmagyar
- destogl

# Reviewers group to get broader feedback.
- name: reviewers
reviewers: 5
usernames:
- rosterloh
- kellyprankin
- progtologist
- arne48
- DasRoteSkelett
- a10263790
- Serafadam
- harderthan
- jaron-l
- malapatiravi
- erickisos
- ShawnSchaerer
- Briancbn
- TomoyaFujita2016
- homalozoa
- anfemosa
- jackcenter
- VX792
- mhubii
- livanov93
- aprotyas
- peterdavidfagan
- UsamaHamayun1
- duringhof
- bijoua29
- kasiceo
13 changes: 13 additions & 0 deletions .github/workflows/reviewer_lottery.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Reviewer lottery
on:
pull_request_target:
types: [opened, ready_for_review, reopened]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: uesteibar/reviewer-lottery@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit c9ab5c1

Please sign in to comment.