Skip to content

Commit f7c8c78

Browse files
committed
Align mentor workflow label casing
Signed-off-by: Mounil <[email protected]>
1 parent f64711c commit f7c8c78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/bot-mentor-assignment.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ function selectMentor(roster, mentee) {
6060
function hasGoodFirstIssueLabel(issue) {
6161
return (issue.labels || []).some((label) => {
6262
const name = typeof label === 'string' ? label : label?.name;
63-
return typeof name === 'string' && name.toLowerCase() === 'good first issue';
63+
return typeof name === 'string' && name === 'Good First Issue';
6464
});
6565
}
6666

0 commit comments

Comments
 (0)