Thank you for contributing to Where To! Here you will find some guidelines on how to contribute:
Here is the workflow for contributing:
- Issues are tracked with GitHub Issues. You can request to work on one of them or come up with a feature of your own.
- Fork the repository and open a new branch off of the latest
master
. Please name the branch along the lines offeature/<feature-name>
orfix/<defect-name>
. Your changes should also include / revise unit tests where applicable (you can runyarn test
to see if all tests pass). - When you are confident of your changes, rebase to the latest
park-junha:master
. Then runyarn bump minor
(if your changes add new functionality in a backwards-compatible manner) oryarn bump patch
(if your changes include backwards-compatible bug fixes only). See semantic versioning for more info. - Open a pull request with the base branch set to
park-junha:master
. Please include in the description which issue your PR implements / closes (if applicable).