From 35a5a9ea9850cee323721a73ed51c040d21765ac Mon Sep 17 00:00:00 2001 From: Hyoungwook Jin Date: Wed, 14 Feb 2024 22:07:32 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=8C=B1=20add=20PR=20template?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/pull_request_template.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..dc54a28 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,2 @@ +- Write a one-line summary of what you did. +- Add a screenshot/video of the feature you developed (if applicable). From f2b98d29ad795c6c0e27d3acb573b83bc72445b7 Mon Sep 17 00:00:00 2001 From: Hyoungwook Jin Date: Wed, 14 Feb 2024 22:07:55 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=91=B7=20add=20a=20workflow=20for=20r?= =?UTF-8?q?eviewing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/reviewer-lottery.yml | 10 ++++++++++ .github/workflows/reviewer-lottery.yml | 13 +++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 .github/reviewer-lottery.yml create mode 100644 .github/workflows/reviewer-lottery.yml diff --git a/.github/reviewer-lottery.yml b/.github/reviewer-lottery.yml new file mode 100644 index 0000000..4d7cdd6 --- /dev/null +++ b/.github/reviewer-lottery.yml @@ -0,0 +1,10 @@ +groups: + - name: devs # name of the group + reviewers: 1 # how many reviewers do you want to assign? + usernames: # github usernames of the reviewers + - jhw123 + - alextio + - itnoj15 + - CheddarChoi + - yumincho + - shahnozayadgar diff --git a/.github/workflows/reviewer-lottery.yml b/.github/workflows/reviewer-lottery.yml new file mode 100644 index 0000000..1a131af --- /dev/null +++ b/.github/workflows/reviewer-lottery.yml @@ -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@v3 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }}