New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

commit-ticket

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

commit-ticket

Git hook intended for automatically placing ticket id from branch name to commit message

Source
npmnpm
Version
1.0.1
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

Motivation

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.

Install

 $ yarn add commit-ticket -D

Usage

  • Create commit-ticket-config.json file in the root of your project

  • Config should contain only one parameter branchPattern which is a regexp.

            {
              "branchPattern": "^feature/(\\w+-[0-9]{1,6})"
            }     
    

    Regexp MUST satisfy two conditions:

    • Whole regexp should match required part of branch name. For example, you could have branch feature/PROJECT-123-cool-things where feature/PROJECT-123 is required part. Only feature/PROJECT-123 should be matched by regexp.
    • Ticket id should be only parentheses group.

    You can test your regexp:

       "feature/PROJECT-123-cool-things".match(new RegExp(branchPattern)) // should return
       //  ["feature/PROJECT-123", "PROJECT-123", index: 0, input: "feature/PROJECT-123-cool-things", groups: undefined]
    
        {
          "branchPattern": "^feature/(\\w+-[0-9]{1,6})"
        }     
    
  • Adjust hook, for instance with Husky:

      hooks:
        prepare-commit-msg: commit-ticket $HUSKY_GIT_PARAMS
    

Keywords

git

FAQs

Package last updated on 29 Mar 2020

Did you know?

Socket

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.

Install

Related posts