Skip to content

Latest commit

 

History

History
25 lines (13 loc) · 1.88 KB

CONTRIBUTING.md

File metadata and controls

25 lines (13 loc) · 1.88 KB

Contributing

First of all, thank you for contributing, you are awesome!

You can report bugs or request new features by creating an issue, or submit a pull request with your contribution.

Here are a few rules to follow in order to ease code reviews and discussions before maintainers accept and merge your work.

You MUST follow the Best practices for writing Dockerfiles. If you don't know about any of them, you should really read the recommendations.

You MUST run the CI test suite and ensure it is successful. If you haven't enabled it on your fork, it will be automatically triggered when opening/pushing a Pull Request (PR).

You SHOULD write documentation.

Please, write commit messages that make sense, and rebase your branch before submitting your Pull Request.

You MUST use the develop branch as the base of your Pull Request.

If possible, use gitmoji in your commit message to ease code reviews.

One may ask you to squash your commits too. This is used to "clean" your Pull Request before merging it (we don't want commits such as fix tests, fix 2, fix 3, etc.).

Also, while creating your Pull Request on GitHub, you MUST write a description which gives the context and/or explains why you are creating it. If your Pull Request is related to one or several issues, you SHOULD reference them in your PR description. See GitHub documentation on how to close issues using keywords.

Thank you!