
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@owngames/semantic
Advanced tools
Semantic Versioning, Conventional Commits with CI/CD for GitHub Actions.
@owngames/git-cz)@owngames/git-cz)semantic-release)yarn add @owngames/semantic --dev
This extends @owngames/git-cz.
./release.config.cjs
Custom values:
enableGit?: booleanenableGithub?: booleanenableNpm?: booleanenableReleaseNotes?: booleanenableReleaseNotesCustom?: booleanAnd then the rest of the traditional configuration values for semantic-release and conventional-changelog.
You can look at this monorepo as it re-uses a lot of code ethroughout via release.config
const { getConfig } = require('@owngames/semantic')
const { name } = require('./package.json')
const configPassed = {
tagFormat: `${name}@\${version}`,
}
const config = getConfig(configPassed)
module.exports = config
Add a script in package.json:
"scripts": {
"branch": "git-cz --branch --allow-empty"
}
Running yarn branch will then trigger the CLI to create branch for you based on
Add a script in package.json as this extends semantic-release:
"scripts": {
"semantic-release": "semantic-release",
"release": "auto shipit"
}
Be sure to allow for Git + GitHub access so semantic-release can create commits and more actions on your repo.
Configured in this repo via ./github/workflows/semantic-release.yml.
FAQs
Semantic Versioning, Conventional Commits with CI/CD for GitHub Actions.
We found that @owngames/semantic 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.