[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2026-04-22 00:05:08 +00:00
committed by GitHub
parent fc6df3ae05
commit ce703ef478
+4 -1
View File
@@ -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" });