From 304f00f8ad5f7e65e2d2ef7fe00edd312db71169 Mon Sep 17 00:00:00 2001 From: CyberL1 Date: Tue, 2 Dec 2025 21:19:49 +0100 Subject: [PATCH] fix: github webhok username and avatar are now more in-line with discord --- src/api/routes/webhooks/#webhook_id/#token/github.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/routes/webhooks/#webhook_id/#token/github.ts b/src/api/routes/webhooks/#webhook_id/#token/github.ts index 5baf4e7ba..68fe7c043 100644 --- a/src/api/routes/webhooks/#webhook_id/#token/github.ts +++ b/src/api/routes/webhooks/#webhook_id/#token/github.ts @@ -13,8 +13,8 @@ const parseGitHubWebhook = (req: Request, res: Response, next: NextFunction) => } const discordPayload: WebhookExecuteSchema = { - username: "Github", - avatar_url: "https://github.com/Github.png", + username: "GitHub", + avatar_url: "https://github.githubassets.com/assets/GitHub-Mark-ea2971cee799.png", }; switch (eventType) {