Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 1.96 KB

CONTRIBUTING.md

File metadata and controls

39 lines (32 loc) · 1.96 KB

Contributing

A roadmap of this project is located at https://github.com/Icinga/chef-icingaweb2/milestones. Please consider this roadmap when you start contributing to the project.

Before starting your work on this module, you should fork the project to your GitHub account. This allows you to freely experiment with your changes. When your changes are complete, submit a pull request. All pull requests will be reviewed and merged if they suit some general guidelines:

  • Changes are located in a topic branch
  • For new functionality, proper tests are written
  • Changes should not solve certain problems on special environments
  • Your change does not handle third party software for which dedicated Puppet modules exist
    • such as creating databases, installing webserver etc.

Branches

Choosing a proper name for a branch helps us identify its purpose and possibly find an associated bug or feature. Generally a branch name should include a topic such as fix or feature or release or travis followed by a description and an issue number if applicable. Branches should have only changes relevant to a specific issue.

git checkout -b fix-issue-123
git checkout -b feature-issue-123
git checkout -b travis-new-update
git checkout -b release-v0.0.0

Testing

Classes and defined types are unit tested with Rubocop, Foodcritic and Chefspec. For integration tests we use Kitchen. When modifying existing classes or types, make sure all existing tests pass (/opt/chefdk/bin/chef exec rake). If you add new functionality, make sure to write appropriate tests as well. A complete guide on how to run tests is described in TESTING.md.