ci/github-script/reviewers: convert all usernames to lowercase (part 2)

Context: #464046
This commit is contained in:
Michael Daniels
2025-11-22 15:24:39 -05:00
parent e20a739ba0
commit 25b6c45ef4
+3 -1
View File
@@ -45,7 +45,9 @@ async function handleReviewers({
...(await Promise.all(
maintainers.map(async (id) => (await getUser(id)).login.toLowerCase()),
)),
...owners.filter((handle) => handle && !handle.includes('/')),
...owners
.filter((handle) => handle && !handle.includes('/'))
.map((handle) => handle.toLowerCase()),
])
log('reviewers - users', Array.from(users).join(', '))