hookshot
hookshot copied to clipboard
Hookshot is a tiny library and companion CLI tool for handling GitHub post-receive hooks.
``` GMT express deprecated res.send(status, body): Use res.status(status).send(body) instead at node_modules/hookshot/lib/index.js:33:9 ``` Seems like an easy enough fix. I feel like your testing setup for webhooks is probably more ready-to-go...
Small patch to resolve warning message I've been getting: `express deprecated res.send(status, body): Use res.status(status).send(body) instead at home/ubuntu/node_modules/hookshot/lib/index.js:33:9`
Any idea on how to improve this tool bypassing routing and NAT restriction?
Hey there Marco, Had to drop you a line here as I am really impressed with the level of activity and effort you put into your open source stuff. We...
GitHub lets you put a shared secret into a webhook, that the server can use to verify that it's really GitHub making the request. hookshot should support this. I'll plan...
GitHub sends a ping even on Webhook creation: https://developer.github.com/webhooks/#ping-event But since it doesn't follow the structure that `lib/index.js` is expecting, that script throws an error, such as when it can't...
As the title says, this repo has been stale for a long time. I had a PR and some other changes I wanted to implement and couldn't wait any longer....
Thanks for this cool package! In effort to try continue development on this module, I added basic BDD tests. To properly handle errors in the tests, I had to add...
[18F/pages](https://github.com/18F/pages) is a Hookshot server for https://pages.18f.gov/. As noted in 18F/pages#14, the default 100KB payload limit was exceeded by a webhook fired for 18F/govt-wide-patternlibrary#54. This change will allow us to...
It looks like GitHub is changing the way they deliver webhook payloads EDIT, better link to the post https://developer.github.com/changes/2014-10-21-deployment-webhook-payload-changes/