mirror of
https://github.com/saltstack-formulas/template-formula.git
synced 2025-04-17 10:10:28 +00:00

* https://github.com/semantic-release/semantic-release - Fully automated version management and package publishing. * This commit introduces automation for the following processes: - (1) Version number bumped based on commit message types. - (2) Tags and releases created in GitHub. - (3) Changelog updated using the same content in the GitHub release. - (4) `FORMULA` version number updated. - (5) PR comments sent to inform which release includes the changes.
16 lines
606 B
JavaScript
16 lines
606 B
JavaScript
// No release is triggered for the types commented out below.
|
|
// Commits using these types will be incorporated into the next release.
|
|
module.exports = [
|
|
{breaking: true, release: 'major'},
|
|
// {type: 'build', release: 'patch'},
|
|
// {type: 'chore', release: 'patch'},
|
|
// {type: 'ci', release: 'patch'},
|
|
{type: 'docs', release: 'patch'},
|
|
{type: 'feat', release: 'minor'},
|
|
{type: 'fix', release: 'patch'},
|
|
{type: 'perf', release: 'patch'},
|
|
{type: 'refactor', release: 'patch'},
|
|
{type: 'revert', release: 'patch'},
|
|
{type: 'style', release: 'patch'},
|
|
{type: 'test', release: 'patch'},
|
|
];
|