chore: cron trigger only

This commit is contained in:
Cory Dransfeldt 2024-10-28 15:29:30 -07:00
parent 63a80a2149
commit 86cde92ba7
No known key found for this signature in database

View file

@ -8,19 +8,6 @@ export default {
async scheduled(event, env, ctx) { async scheduled(event, env, ctx) {
await handleMastodonPost(env); await handleMastodonPost(env);
}, },
async fetch(request, env, ctx) {
if (request.method !== "POST")
return new Response("Method Not Allowed", { status: 405 });
if (request.headers.get("x-webhook-token") !== env.WEBHOOK_SECRET)
return new Response("Unauthorized", { status: 401 });
await handleMastodonPost(env);
return new Response("Worker triggered by successful build.", {
status: 200,
});
},
}; };
async function handleMastodonPost(env) { async function handleMastodonPost(env) {