Merge pull request #1420 from CyberL1/fix/gh-embeds-username-and-avatar

This commit is contained in:
Cyber
2025-12-02 21:21:02 +01:00
committed by GitHub

View File

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