Skip to content

Latest commit

 

History

History
64 lines (48 loc) · 2.33 KB

CONTRIBUTING.md

File metadata and controls

64 lines (48 loc) · 2.33 KB

CONTRIBUTING

WORKFLOW

  1. Create your proposal/bug in an issue.
  2. Create a new branch and pull request with the pattern:
    • feat/my-new-feature.
    • docs/add-new-docs.
    • test/add-a-test.
    • fix/big-bug.
  3. Open a PR for you issue (or link with a existent)
  4. Await to merge
  5. Publish new change by tag

Gitlab Flow


CONVENTIONAL COMMIT

type(escope): short description

You need describe better?
Write more here

type

  • add adds a new feature
  • fix fixes a bug
  • update does not add a feature or fix a bug
  • remove remove a peace of code
  • security update/fix some security matter code

SEMANTIC VERSION

Major.Minor.Patch (e.g. 1.3.4)

  • deprecated! -> Major
  • add -> Minor
  • update | fix -> Patch

READTHEDOCS