GitLab will display topics with capitals: <img width="296" alt="image" src="https://github.com/user-attachments/assets/773a8ef7-c05f-4326-898c-0455a17755e8" /> But will return them as normalized lowercase: <img width="126" alt="image" src="https://github.com/user-attachments/assets/dd91bcb6-ff5b-42b5-92cd-e189846c4211" /> Since our current comparison util is case sensitive, this will fail: ```jsonc { "$schema": "./schemas/v2/index.json", "repos": [ { "type": "gitlab", "groups": [ "sourcebot" ], "exclude": { "topics": [ "TypeScript" ] } } ] } ``` We should also be normalizing things to lowercase first (for GitLab).