From ce703ef47872b912e3924d8fc780731fa6732005 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Wed, 22 Apr 2026 00:05:08 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- apps/dokploy/pages/api/deploy/github.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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" });