We'd love for you to contribute to our source code and to make the Forest even better than it is today! Here are the guidelines we'd like you to follow:
If you have questions about how to use the Forest, please direct these to the Slack group / philips-software.
If you find a bug in the source code or a mistake in the documentation, you can help us by submitting an issue to our Github Repository. Even better you can submit a Pull Request with a fix.
Please see the Submission Guidelines below.
You can request a new feature by submitting an issue to our Github Repository. If you would like to implement a new feature then consider what kind of change it is:
If you want to help improve the docs, it's a good idea to let others know what you're working on to minimize duplication of effort. Create a new issue (or comment on a related existing one) to let others know what you're working on.
For large fixes, please build and test the documentation before submitting the MR to be sure you haven't accidentally introduced any layout or formatting issues. You should also make sure that your commit message starts with "docs" and follows the Commit Message Guidelines outlined below.
Before you submit your issue search the archive, maybe your question was already answered.
If your issue appears to be a bug, and hasn't been reported, open a new issue. Help us to maximize the effort we can spend fixing issues and adding new features, by not reporting duplicate issues. Providing the following information will increase the chances of your issue being dealt with quickly:
If you get help, help others. Good karma rulez!
Before you submit your merge request consider the following guidelines:
Make your changes in a new git branch:
git checkout -b my-fix-branch develop
Create your patch, including appropriate test cases.
Install Terraform. We lock the version with tvenv, check required_version
in versions.tf
for the current development version of the module.
Install pre-commit hooks. The hooks runs some basic checks and update the docs. The commit will run the hooks, you can invoke the hooks manually pre-commit run --all-files
as well.
Commit your changes using a descriptive commit message.
git commit -a
Note: the optional commit -a
command line option will automatically "add" and "rm" edited files.
Push your branch to Github:
git push origin my-fix-branch
In Github, send a pull request to original develop branch: f.e. terraform-aws-github-runner:develop
.
If we suggest changes, then:
my-fix-branch
).If the PR gets too outdated we may ask you to rebase and force push to update the PR:
git rebase develop -i
git push origin my-fix-branch -f
WARNING: Squashing or reverting commits and force-pushing thereafter may remove Github comments on code that were previously made by you or others in your commits. Avoid any form of rebasing unless necessary.
That's it! Thank you for your contribution!
After your pull request is merged, you can safely delete your branch and pull the changes from the main (upstream) repository:
Delete the remote branch on Github either through the Github web UI or your local shell as follows:
git push origin --delete my-fix-branch
Check out the develop branch:
git checkout develop -f
Delete the local branch:
git branch -D my-fix-branch
Update your develop with the latest upstream version:
git pull --ff upstream develop
For more info, please reach out to the team on Slack group / philips-software in the #forest channel.
Use the badge to sign-up.