-
Notifications
You must be signed in to change notification settings - Fork 1.3k
37 lines (33 loc) · 1.33 KB
/
pr-auto-assign.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: "Auto assign PR reviewers"
on:
pull_request_target:
types: [opened, ready_for_review, reopened]
permissions:
pull-requests: write
jobs:
add-reviews:
if: ${{ join(github.event.pull_request.requested_reviewers.*.login, ',') == '' && github.event.pull_request.draft == false }}
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
with:
script: |
const reviewers = ['mstoykov', 'codebien', 'olegbespalov', 'oleiade', 'joanlopez'];
const reviewerCount = 2;
const crypto = require("node:crypto");
const getNRandom = (n, array) => {
let result = new Array();
for (;n > 0 && array.length > 0; n--) {
const chosen = array[crypto.randomInt(array.length)];
result.push(chosen);
array = array.filter(el => el != chosen);
}
return result;
}
const reviewersWithoutAuthor = reviewers.filter(user => user !== context.payload.pull_request.user.login);
github.rest.pulls.requestReviewers({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: context.payload.pull_request.number,
reviewers: getNRandom(reviewerCount, reviewersWithoutAuthor),
});