
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.
commit-ticket
Advanced tools
Git hook intended for automatically placing ticket id from branch name to commit message
It is a very common case to use an agreement for git branch naming. I'm pretty sure everyone has used it.
As well, it is quite common case to have a ticket id in the git branch name. For example, it could be something like:
feature/PROJECT-123. One more common case is the necessity to have a ticket id in the commit message. This job is often done by hands, but it could be automated.
This package adds ticket id to the start of a commit message. Let's imagine you develop in branch feature/PROJECT-123.
At some moment, you want to make a commit with the message made cool things. But you need to have results commit
messages like PROJECT-123 made cool things. It is what this package exactly does.
$ yarn add commit-ticket -D
Create commit-ticket-config.js file in the root of your project by
$ yarn commit-ticket generate-config
Once command above called you'll see commit-ticket-config.js in the root of your project. If you looked into that file you will see that config should
export default one function that gives two parameters: git branch name and commit message. Function must return string and returned string will be used as commit message
Adjust hook with Husky.
It is required to use that hook at commit-msg stage because only there we have a path to entered commit message:
hooks:
commit-msg: commit-ticket prepare-msg $HUSKY_GIT_PARAMS
FAQs
Git hook intended for automatically placing ticket id from branch name to commit message
The npm package commit-ticket receives a total of 0 weekly downloads. As such, commit-ticket popularity was classified as not popular.
We found that commit-ticket 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.