sean_smyth-githubstarwebhook.web.val.run
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 });
};
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
v0
November 27, 2023