Thank you for considering contributing to the SOQL Lib project! 🙌
We welcome contributions that improve performance, add features, fix bugs, or enhance documentation and tests.
To contribute to this project, please follow the standard GitHub fork-and-pull workflow:
Start by forking the repository to your own GitHub account.
git clone https://github.com/YOUR_USERNAME/soql-lib.git
cd soql-libgit checkout -b feature/my-awesome-featureMake your changes in the appropriate files. Please follow the current coding style and conventions used in the codebase.
If you’re updating logic, add or update unit tests.
git add .
git commit -m "feat: add support for XYZ feature"
git push origin feature/my-awesome-featureOpen a Pull Request (PR) from your fork to the main branch of the original repository:
https://github.com/beyond-the-cloud-dev/soql-lib
- Base:
main - Compare: your feature branch
Add the code example to the PR description.
Please add @pgajek2 as a reviewer to your PR.
Before submitting your PR, make sure you’ve:
- Written clear and concise commit messages
- Followed existing code style and naming conventions
- Added or updated relevant documentation (if applicable)
- Added or updated unit tests (if applicable)
- Verified that all existing tests pass