kentaro-m / auto-assign

🤖 A Probot app that adds reviewers to pull requests when pull requests are opened.
https://probot.github.io/apps/auto-assign/
ISC License
249 stars 55 forks source link

Option(numberOfReviewers) does not work properly #239

Closed comeonyo closed 1 year ago

comeonyo commented 1 year ago

Describe the bug I set auto_assign.yml as below. The Bot assign only one reviewer from the list. If i set numberOfReviewers as 2, the bot assign 2 reviewers, as i expected.

# Set to true to add assignees to pull requests
addAssignees: author

# Set to true to add reviewers to pull requests
addReviewers: true

reviewers:
  - userA
  - userB

Expected behavior Assign all reviewers.