From dc72e1c4ba785c68b370b7c294e6cfeba5b4e536 Mon Sep 17 00:00:00 2001 From: Finn Evers Date: Sun, 21 Dec 2025 22:36:54 +0100 Subject: [PATCH] collab: Fix capitalization of copilot name alias (#45497) This fixes copilot currently not passing the CLA check. Release Notes: - N/A --- crates/collab/src/api/contributors.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/collab/src/api/contributors.rs b/crates/collab/src/api/contributors.rs index ce318b15295ebe5c777597a6d3c6106e57af8e05..4758adb2d71760a52c9ce5e4f2bc44f7069778fb 100644 --- a/crates/collab/src/api/contributors.rs +++ b/crates/collab/src/api/contributors.rs @@ -113,7 +113,7 @@ impl CopilotSweAgentBot { const USER_ID: i32 = 198982749; /// The alias of the GitHub copilot user. Although https://api.github.com/users/copilot /// yields a 404, GitHub still refers to the copilot bot user as @Copilot in some cases. - const NAME_ALIAS: &'static str = "copilot"; + const NAME_ALIAS: &'static str = "Copilot"; /// Returns the `created_at` timestamp for the Dependabot bot user. fn created_at() -> &'static NaiveDateTime {