From dfe5c8fea209537f07be5df36eef1db383346f84 Mon Sep 17 00:00:00 2001 From: hoyahozz <85336456+hoyahozz@users.noreply.github.com> Date: Wed, 22 Jan 2025 01:43:28 +0900 Subject: [PATCH] =?UTF-8?q?[TNT-000]=20chore:=20Auto-assign=20=EC=95=A1?= =?UTF-8?q?=EC=85=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/auto-assign-config.yaml | 19 +++++++++++++++++++ .github/workflows/auto-assign.yaml | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 .github/auto-assign-config.yaml diff --git a/.github/auto-assign-config.yaml b/.github/auto-assign-config.yaml new file mode 100644 index 00000000..8c6c713d --- /dev/null +++ b/.github/auto-assign-config.yaml @@ -0,0 +1,19 @@ +# 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: + - hoyahozz + - SeonJeongk + +# A number of reviewers added to the pull request +# Set 0 to add all the reviewers (default: 0) +numberOfReviewers: 2 + +# A number of assignees to add to the pull request +# Set to 0 to add all of the assignees. +# Uses numberOfReviewers if unset. +numberOfAssignees: 1 diff --git a/.github/workflows/auto-assign.yaml b/.github/workflows/auto-assign.yaml index 8dac8220..c5f5b7a7 100644 --- a/.github/workflows/auto-assign.yaml +++ b/.github/workflows/auto-assign.yaml @@ -12,4 +12,4 @@ jobs: steps: - uses: kentaro-m/auto-assign-action@v1.2.1 with: - configuration-path: .github/workflows/auto-assign.yaml + configuration-path: .github/auto-assign-config.yaml