2.0.0 • Published 3 years ago

husky-pivotal v2.0.0

Weekly downloads
14
License
MIT
Repository
github
Last release
3 years ago

Husky + Pivotal NPM Version Build Status

Husky hook commands to keep commits tied to Pivotal Tracker stories.

Installation

  1. Set up Husky
  2. npm install husky-pivotal --save-dev
  3. Add one or more of the hook commands to suit your needs:

Hook commands

The hup-mkmsg command looks for a Pivotal Tracker Story ID in the current branch name and then uses it to prefill new commit messages with a [#____] format story reference. For example, if you're working in a branch named 123456-new-feature then [#123456] will be prefilled in new commit messages created within that branch.

To use this command, add hup-mkmsg to your Husky prepare-commit-msg hook:

npx husky add .husky/prepare-commit-msg 'npx --no-install hup-mkmsg "$1"'

The hup-ckmsg command checks that commit messages contain a [#____] format story reference. The commit is aborted if it doesn't contain a story reference.

To use this command, add hup-ckmsg to your Husky commit-msg hook:

npx husky add .husky/commit-msg 'npx --no-install hup-ckmsg "$1"'

The hup-ckbranch command checks that the current branch name contains a Pivotal Tracker Story ID. Commits are aborted if the branch name doesn't contain a Story ID.

To use this command, add hup-ckbranch to your Husky pre-commit hook:

npx husky add .husky/pre-commit 'npx --no-install ckbranch'

License

MIT

2.0.0

3 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

6 years ago

1.0.0

7 years ago