Avatar

sean_smyth

2 public vals
Joined July 16, 2023
1
2
3
4
5
6
7
8
9
export const githubStarWebhook = async (req: Request) => {
const { action, sender, repository } = await req.json();
if (action === "created") {
console.email(
`Repository ${repository.full_name} starred by ${sender.login}`,
);
}
return new Response("OK", { status: 200 });
};
1
2
3
export function myApi(name = "placeholder", blurg = "blurg") {
return `Hi ${name} + ${blurg}`;
}
Next