collab: Fix capitalization of copilot name alias (#45497)

This fixes copilot currently not passing the CLA check. 

Release Notes:

- N/A
This commit is contained in:
Finn Evers
2025-12-21 22:36:54 +01:00
committed by GitHub
parent 0884305e43
commit dc72e1c4ba

View File

@@ -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 {