Skip to content
Snippets Groups Projects
After you've reviewed these contribution guidelines, you'll be all set to contribute to this project.

Contributors guide

Want to contribute? Great! We try to make it easy, and all contributions, even the smaller ones, are more than welcome. This includes bug reports, fixes, documentation, examples... But first, read this page (including the small print at the end).

Contributions are available on https://gitlab.com/to-be-continuous/s2i

Legal

All original contributions to to be continuous are licensed under the GNU Lesser General Public License, version 3.0 or later.

All contributions are subject to the Developer Certificate of Origin (DCO). The DCO is a lightweight way for contributors to certify that they wrote or otherwise have the right to submit the code they are contributing to the project. The DCO text is also included verbatim in the DCO.txt file in the root directory of the repository.

Contributors must sign-off that they adhere to these requirements by adding a Signed-off-by line to commit messages, as shown below:

This is the commit message

Signed-off-by: John Dev <john.dev@developer.example.org>

Git has a handy -s command line option to append this automatically to your commit message:

$ git commit -s -m 'This is the commit message'

Reporting an issue

This project uses GitLab issues to manage the issues.

Before creating an issue:

  1. upgrade your project to the latest released template version, and check whether your bug is still present,
  2. have a look in the opened issues if your problem is already known/tracked, and possibly contribute to the thread with your own information.

If none of the above was met, open an issue directly in GitLab, select the appropriate issue template and fill-in each section when applicable.

Submitting a code change

Git Setup

Before contributing, make sure you have set up your Git authorship correctly:

git config --global user.name "Your Full Name"
git config --global user.email your.email@example.com

Workflow

All submissions, including submissions by project members, need to be reviewed before being merged.

To contribute:

  1. Create an issue describing the bug or enhancement you want to propose (select the right issue template).
  2. Make sure the issue has been reviewed and agreed.
  3. Create a Merge Request, from your own fork (see forking workflow documentation). Don't hesitate to mark your MR as Draft as long as you think it's not ready to be reviewed.

Git Commit Conventions

In addition to being signed-off according the Developer Certificate of Origin (see above), Git commits in to be continuous shall be:

  1. atomic (1 commit = 1 and only 1 thing),
  2. semantic (using semantic-release commit message syntax).

You'll find extensive information about Git commit conventions on the reference documentation website.

Coding Guidelines

The extensive to be continuous coding guidelines can be found on the reference documentation website.