
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
@lukeocodes/changelog-log
Advanced tools
GitHub Action: detect new changelog entries and post JSON webhooks
GitHub Action that detects new changelog entries and posts them as structured JSON to a webhook.
name: Changelog Log
on:
push:
branches: [main]
paths: ["**/CHANGELOG*.md"]
jobs:
notify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: lukeocodes/changelog-log@v1
with:
webhook_url: ${{ secrets.CHANGELOG_WEBHOOK_URL }}
| Input | Required | Default | Description |
|---|---|---|---|
webhook_url | Yes | - | Destination URL for JSON payload |
file_globs | No | CHANGELOG.md,**/... | Changelog file patterns to watch |
entry_separator_regex | No | ^##\s+.*$ | Regex for entry headers |
http_method | No | POST | HTTP method (POST/PUT/PATCH) |
webhook_headers_json | No | - | Extra headers as JSON string |
extra_body_json | No | - | Extra fields to merge into payload |
include_body_raw | No | false | Include unparsed entry text |
log_level | No | warn | Log level (trace/debug/info/warn/error/fatal) |
{
"filePath": "CHANGELOG.md",
"commit": { "before": "abc123...", "after": "def456..." },
"header": "## [1.2.3] - 2025-10-17",
"version": "1.2.3",
"date": "2025-10-17",
"sections": {
"Added": ["New feature X"],
"Fixed": ["Bug Z"]
}
}
Use extra_body_json to add custom fields to the payload:
- uses: lukeocodes/changelog-log@v1
with:
webhook_url: ${{ secrets.WEBHOOK_URL }}
extra_body_json: '{"project":"myapp","environment":"production"}'
This will merge the extra fields into the payload:
{
"filePath": "CHANGELOG.md",
"version": "1.2.3",
"project": "myapp",
"environment": "production",
...
}
See CONTRIBUTING.md. Use conventional commits for PRs.
MIT © Luke Oliff
FAQs
GitHub Action: detect new changelog entries and post JSON webhooks
We found that @lukeocodes/changelog-log demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.