Cloudbase-init project is Apache 2.0 licensed and accepts contributions via GitHub pull requests.
This document outlines some of the conventions on development workflow, commit message formatting, contact points and other resources to make it easier to get your contribution accepted.
By contributing to this project you agree to the Developer Certificate of Origin (DCO). This document was created by the Linux Kernel community and is a simple statement that you, as a contributor, have the legal right to make the contribution. See the DCO file for details.
All code contributions must include a valid "Signed-off-by" line.
Assignment of copyright is not required to contribute code. Code is contributed under the terms of the applicable Apache 2.0 license.
This is a rough outline of what a contributor's workflow looks like:
- Create a topic branch from where you want to base your work (usually master).
- Make commits of logical units.
- Make sure your commit messages are signed using
git commit -s. - Make sure the unit tests pass, and add any new unit tests as appropriate.
- Push your changes to a topic branch in your fork of the repository.
- Enable github actions and make sure the workflows pass.
- Submit a pull request to the original repository.