Contributing Code
September 4, 2023 ยท View on GitHub
Getting Started
We use GitHub to host code, to track issues and feature requests, as well as accept pull requests. Before raising a pull request, ensure you have raised a corresponding issue and discussed a possible solution with a maintainer. This gives your pull request the highest chance of getting merged quickly.
๐ด Git Workflow
We use Github Flow, so all code changes happen through pull requests.
- Fork the repo and create a new branch from the
developbranch. - Branches are named as
fix/fix-nameorfeature/feature-name - Please test your changes.
- Once you are confident in your code changes, create a pull request in your fork to the
developbranch in theillacloud/builder-backendbase repository. - If you've changed any APIs, please call this out in the pull request and ensure backward compatibility.
- Link the issue of the base repository in your Pull request description. Guide
- When you raise a pull request, we automatically run tests on our CI. Please ensure that all the tests are passing for your code change. We will not be able to accept your change if the test suite doesn't pass.