-
Notifications
You must be signed in to change notification settings - Fork 191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: GitHub Webhooks middleware #883
base: main
Are you sure you want to change the base?
Conversation
🦋 Changeset detectedLatest commit: 5a7ec29 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Hi @oscarvz Sorry for the late reply. Looks good. I think it will be helpful if you write this as an example on "Examples" in our doc like the "Stripe Webhook": https://hono.dev/examples/stripe-webhook Maintaining middleware is harder than updating documentation, so I think it's better to make it a document than adding the middleware to this repo. |
Introduces middleware that allows you to receive and process GitHub Webhooks events in your Hono application.
It conveniently validates the incoming requests and provides you with a simple API to handle the events.
Usage
TODO