diff --git a/apps/dokploy/pages/api/deploy/github.ts b/apps/dokploy/pages/api/deploy/github.ts index 8aeffdf47..99f64ecc7 100644 --- a/apps/dokploy/pages/api/deploy/github.ts +++ b/apps/dokploy/pages/api/deploy/github.ts @@ -53,7 +53,10 @@ export default async function handler( secret: githubResult.githubWebhookSecret, }); - const verified = await webhooks.verify(JSON.stringify(githubBody), signature as string); + const verified = await webhooks.verify( + JSON.stringify(githubBody), + signature as string, + ); if (!verified) { res.status(401).json({ message: "Unauthorized" });