chore: cron trigger only
This commit is contained in:
parent
63a80a2149
commit
86cde92ba7
1 changed files with 0 additions and 13 deletions
|
@ -8,19 +8,6 @@ export default {
|
|||
async scheduled(event, env, ctx) {
|
||||
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) {
|
||||
|
|
Reference in a new issue