
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
github-release-webhook-to-bugsnag
Advanced tools
Notify Bugsnag of a new deployment when a new GitHub release is published.
Notify Bugsnag of a new deployment when a new GitHub release is published.
Designed for use with the excellent github-webhook-middleware.
npm install --save github-release-webhook-to-bugsnag github-webhook-middleware
Add a new route for your GitHub webhook that uses the middleware:
const app = require('express')();
...
const githubWebhook = require('github-webhook-middleware')({
secret: process.env.REFRESH_SECRET
});
const notifyBugsnagOnRelease = require('github-release-webhook-to-bugsnag')({
repo: process.env.GITHUB_REPO,
token: process.env.GITHUB_TOKEN,
bugsnag: process.env.BUGSNAG_NOTIFIER_KEY
});
app.post('/hooks/github', githubWebhook, notifyBugsnagOnRelease);
...
:username/:repo path on GitHub. Uses the GITHUB_REPO environment variable if unspecified.GITHUB_TOKEN environment variable if unspecified.BUGSNAG_NOTIFIER_KEY environment variable if unspecified.GITHUB_ENDPOINT environment variable if unspecified. Defaults to https://api.github.com.BUGSNAG_ENDPOINT environment variable if unspecified. Defaults to https://notify.bugsnag.com/deploy.Apache 2.0
FAQs
Notify Bugsnag of a new deployment when a new GitHub release is published.
The npm package github-release-webhook-to-bugsnag receives a total of 0 weekly downloads. As such, github-release-webhook-to-bugsnag popularity was classified as not popular.
We found that github-release-webhook-to-bugsnag demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.