github-webhook-handler
github-webhook-handler copied to clipboard
Node.js web handler / middleware for processing GitHub Webhooks
Results
2
github-webhook-handler issues
Sort by
recently updated
recently updated
newest added
the title is my issue
using my own function works but it crash with github-webhook-handler: const createComparisonSignature = (body) => { const hmac = crypto.createHmac('sha1', process.env.GITHUB_SECRET); const self_signature = hmac.update(JSON.stringify(body)).digest('hex'); return `sha1=${self_signature}`; // shape in...