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