Skip to content

Commit 5b4560d

Browse files
committed
Use a uniform distribution for the autoassigner
1 parent d9d5d19 commit 5b4560d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/autoassign-issues.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
script: |
1616
// each user has a chance of (p - (previousP ?? 0)) to be assigned
1717
const potentialAssignees = [
18-
["fvictorio", 0.5],
19-
["schaable", 0.75],
18+
["fvictorio", 1/3],
19+
["schaable", 2/3],
2020
["ChristopherDedominici", 1.0],
2121
];
2222

0 commit comments

Comments
 (0)