Sort codeowners using case-insensitive (#10651)

Co-authored-by: J. Nick Koston <nick@koston.org>
This commit is contained in:
Jesse Hills
2025-09-08 21:26:22 -05:00
committed by GitHub
co-authored by J. Nick Koston
parent f5f84fe825
commit 59e62a1f44
2 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ for path in components_dir.iterdir():
for path, owners in sorted(codeowners.items()):
owners = sorted(set(owners))
owners = sorted(set(owners), key=str.casefold)
if not owners:
continue
for owner in owners: