Skip to content

Latest commit

 

History

History
26 lines (14 loc) · 725 Bytes

CONTRIB.md

File metadata and controls

26 lines (14 loc) · 725 Bytes

Commit

Commits must follow the Conventional Commit Guideline as it is used for creating the semantic versioned releases by using GitVersion.

Supported Types

fix, feat, chore, ci, docs, refactor, perf, test

Major Increments

  • if a commit contains either BREAKING CHANGE as part of the commit message.
  • if the type is feat, fix or perf and post-fixed with an ! (e.g: feat!:)

Minor Increments

  • if the type is feat

Patch Increments

  • if the type is fix, chore, refactor, perf, docs

No Increments

  • if the type is build, ci, style, test