2.3 KiB
Contributing
All contributions are welcome! If you find a bug or have a feature request, please open an issue or submit a pull request.
Guidelines
Supported Versions
Versions follow Semantic Versioning terminology and are expressed as x.y.z:
- where x is the major version
- y is the minor version
- and z is the patch version
Security fixes, may be backported to the three most recent minor releases, depending on severity and feasibility.
Prereleases are marked as -rc.x (release candidate) and may refere to any type of version bump.
Pull Requests
Commits
Commit messages should indicate the change and it's impact. The general format for commit messages is the following:
feat(ui): Add `Button` component
^ ^ ^
| | |__ Subject
| |_______ Scope
|____________ Type
The commits are checked on pull-request. If the commit message does not follow the format, the workflow will fail. See the Types and Scopes sections for more information.
Types
The following types are allowed for commits and pull requests:
ciorbuild: changes to buillding process/workflowsdocs: changes to documentationfeat: new featuresfix: bug fixes
Scopes
The following types are allowed for commits and pull requests:
all: changes that affect all componentschart: changes to the Helm chartoperator: changes to the operatordocs: changes to the documentationwebsite: changes to the websiteci: changes to the CI/CD workflowsbuild: changes to the build processtest: changes to the testing processrelease: changes to the release processdeps: dependency updates
Sign-Off
Developer Certificate of Origin (DCO) Sign off For contributors to certify that they wrote or otherwise have the right to submit the code they are contributing to the project, we are requiring everyone to acknowledge this by signing their work which indicates you agree to the DCO found here.
To sign your work, just add a line like this at the end of your commit message:
Signed-off-by: Random J Developer random@developer.example.org This can easily be done with the -s command line option to append this automatically to your commit message.
git commit -s -m 'This is my commit message'