Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.84 KB

CONTRIBUTING.md

File metadata and controls

34 lines (26 loc) · 1.84 KB

Contributing to yawol

Welcome and thank you for making it this far and considering contributing to yawol. We always appreciate any contributions by raising issues, improving the documentation, fixing bugs or adding new features.

Before opening a PR please read through this document.

Process of making an addition

For major changes, API changes, features please open a Discussion or Issue beforehand to clarify if this is in line with the project and to avoid unnecessary work.

Use Discussions if it needs to be clarified how to implement or to check if this feature is in line with the project. After all clarifications an issue will be created with the details of the implementation.

Use Issues if you have a clear plan how to implement to propose how you would do the change.

To contribute any code to this repository just do the following:

  1. Make sure you have Go's latest version installed
  2. Fork this repository
  3. Make sure you have installed Earthly
  4. Make your changes

    Please follow the seven rules of great Git commit messages and make sure to keep your commits clean and atomic. Your PR won't be squashed before merging so the commits should tell a story.

    Add documentation and tests for your addition if needed.

  5. Run earthly --ci +all-except-snyk to ensure your code is ready to be merged

    If any linting issues occur please fix them. Using a nolint directive should only be used as a last resort.

  6. Open a PR and make sure the CI pipelines succeeds.
  7. Wait for one of the maintainers to review your code and react to the comments.
  8. After approval merge the PR
  9. Thank you for your contribution! :)