We love improvements to our tools! There are a few key ways you can help us improve our projects:
We are engaging in a collaborative discussion about project aims and goals, the best place to join in is on github.com/datatogether/ and all are welcome to join our Slack chat.
Submitting feedback or feature requests and reporting bugs usually begins by opening a GitHub issues
Almost all repositories have their own set of issues:
https://github.com/datatogether/<repository-name>/issues
Some projects have additional templates or sets of questions for each issue, which you will be prompted to fill out when creating one.
We have project guidelines for all of the projects hosted in our GitHub Organization, which all repositories should follow.
Our process for accepting changes operates by Pull Request (PR) and has a few steps:
-
If you haven't submitted anything before, and you aren't (yet!) a member of our organization, fork and clone the repo:
$ git clone [email protected]:<your-username>/<repository-name>.git
Organization members should clone the upsteam repo, instead of working from a personal fork:
$ git clone [email protected]:datatogether/<repository-name>.git
-
Create a new branch for the changes you want to work on. Choose a topic for your branch name that reflects the change:
$ git checkout -b <branch-name>
-
Create or modify the files with your changes. If you want to show other people work that isn't ready to merge in, commit your changes then create a pull request (PR) with WIP or Work In Progress in the title.
https://github.com/datatogether/<repository-name>/pull/new/master
-
Once your changes are ready for final review, commit your changes then modify or create your pull request (PR). Next, assign an active lead as a reviewer or ping them (using "
@<username>
") -
Allow others sufficient time for review and comments before pinging again. We make use of GitHub's review feature to comment in-line on PRs when possible. There may be some fixes or adjustments you'll have to make based on feedback.
-
Once you have integrated comments, or waited for feedback, a lead should merge your changes in!
These guidelines are based on EDGI and Toronto Mesh's.