-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: moving issue-assigning logic to make it re-usable
- Loading branch information
1 parent
0928c79
commit e21589c
Showing
2 changed files
with
36 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: assign-k6-maintainer | ||
description: Assign a k6 maintainer to an issue | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
const assignees = ['mstoykov', 'codebien', 'olegbespalov', 'oleiade']; | ||
const assigneeCount = 1; | ||
// Do not automatically assign users if someone was already assigned or it was opened by a maintainer | ||
if (context.payload.issue.assignees.length > 0 || assignees.includes(context.payload.issue.user.login)) { | ||
return; | ||
} | ||
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; | ||
} | ||
github.rest.issues.addAssignees({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: context.issue.number, | ||
assignees: getNRandom(assigneeCount, assignees), | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters