Contribution
Lumbermill welcomes bug reports, feature requests, and pull requests.
Reporting Bugs
Section titled “Reporting Bugs”Report bugs on the GitHub Issues page. Include:
- A clear, descriptive title
- A detailed description of the issue
- Steps to reproduce
- Any relevant logs or screenshots
Requesting Features
Section titled “Requesting Features”Open a new issue on the GitHub Issues page with:
- The problem the feature would solve
- How you envision it working
- Any alternatives you have considered
Contributing Code
Section titled “Contributing Code”-
Fork the repository on GitHub.
-
Clone your fork:
Terminal window git clone https://github.com/instance-studio/lumbermill.git -
Create a branch:
Terminal window git checkout -b bugfix/name# orgit checkout -b feature/name -
Make your changes, following the project’s coding standards.
-
Commit with a clear message:
Terminal window git commit -m "Description of the changes" -
Push to your fork:
Terminal window git push origin bugfix/name -
Open a pull request from your branch to
main. Reference any related issues in the description.
Code Review
Section titled “Code Review”Submitted pull requests are reviewed by the project maintainers. Respond to feedback and push any requested changes to the same branch. Once approved, the pull request will be merged into main.

