-
Notifications
You must be signed in to change notification settings - Fork 22
Open
Description
Is your feature request related to a problem? Please describe.
We’d like to automatically assign reviewers to pull requests.
Currently, reviewers have to be assigned manually.
Describe the solution you’d like
When a pull request is submitted, a reviewer should be assigned automatically based on the PR number modulo.
- The list of reviewers will be stored in project secrets.
- For example:
- PR number % 3 = 0 →
justinyoo
- PR number % 3 = 1 →
sikutisa
- PR number % 3 = 2 →
tae0y
- PR number % 3 = 0 →
Additional context
The list of reviewers should be configurable so that it can be changed when needed.
sikutisa