chore(shellcheck): switch hook for `shellcheck` [skip ci]
[arvados-formula.git] / release-rules.js
1 // No release is triggered for the types commented out below.
2 // Commits using these types will be incorporated into the next release.
3 //
4 // NOTE: Any changes here must be reflected in `CONTRIBUTING.md`.
5 module.exports = [
6   {breaking: true, release: 'major'},
7   // {type: 'build', release: 'patch'},
8   // {type: 'chore', release: 'patch'},
9   // {type: 'ci', release: 'patch'},
10   {type: 'docs', release: 'patch'},
11   {type: 'feat', release: 'minor'},
12   {type: 'fix', release: 'patch'},
13   {type: 'perf', release: 'patch'},
14   {type: 'refactor', release: 'patch'},
15   {type: 'revert', release: 'patch'},
16   {type: 'style', release: 'patch'},
17   {type: 'test', release: 'patch'},
18 ];