From 1f46057ad7840aff5fbd2ab1dc88fda6861bbb99 Mon Sep 17 00:00:00 2001 From: Jeon Eonseok Date: Mon, 29 Jul 2024 18:21:11 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20pr=EC=97=90=20=EC=9E=90=EB=8F=99=20assi?= =?UTF-8?q?gnee,=20reviewer=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/auto-assign.yml | 26 ++++++++++++++++++++++++++ .github/workflows/action.yml | 10 ++++++++++ 2 files changed, 36 insertions(+) create mode 100644 .github/auto-assign.yml create mode 100644 .github/workflows/action.yml diff --git a/.github/auto-assign.yml b/.github/auto-assign.yml new file mode 100644 index 00000000..4b62aa7f --- /dev/null +++ b/.github/auto-assign.yml @@ -0,0 +1,26 @@ +# Set to true to add reviewers to pull requests +addReviewers: true + +# Set to true to add assignees to pull requests +addAssignees: author + +# A list of reviewers to be added to pull requests (GitHub user name) +reviewers: + - eonseok-jeon + - lydiacho + +# A number of reviewers added to the pull request +# Set 0 to add all the reviewers (default: 0) +numberOfReviewers: 0 +# A list of assignees, overrides reviewers if set +# assignees: +# - assigneeA + +# A number of assignees to add to the pull request +# Set to 0 to add all of the assignees. +# Uses numberOfReviewers if unset. +# numberOfAssignees: 2 + +# A list of keywords to be skipped the process that add reviewers if pull requests include it +# skipKeywords: +# - wip diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml new file mode 100644 index 00000000..57f86e9e --- /dev/null +++ b/.github/workflows/action.yml @@ -0,0 +1,10 @@ +name: 'Auto Assign' +on: + pull_request: + types: [opened, ready_for_review, reopened] + +jobs: + add-reviews: + runs-on: ubuntu-latest + steps: + - uses: kentaro-m/auto-assign-action@v2.0.0