Helping maintain a project is the best way to contribute to its overall health.
We define stale as issues that are 30 days or older. Stale is often an indicator of another issue: it is unnecessary, too vague, too broad, or a low priority.
- unnecessary - close it
- vague - clarify the issue and make it more available
- broad - create more focused issues, such as "add flow types to
WhyPaused
component" - low priority - close it and add it to the enhancements board
Available is short for two things:
- a clearly defined specification (end-state)
- a clear implementation plan
Our goal is to have 100% of our issues available or blocked by another available ticket. If you find an issue that is not available you can:
- investigate the issue and answer questions that you have
- share questions or offer reasonable solutions that can be implemented
- add a patch to help the person who picks up the issue
Following up on in progress work is delicate, but tremendously important.
When done well, the recipient feels like their work is appreciated and feels comfortable asking questions that could be blocking the work.
When done poorly, the recipient feels like they're being rushed and is not sure how to complete it.
Some good rules of thumb are:
- asking what their timeline is
- asking if they are blocked or if you can help
- offer to pair or talk on slack.
- try to breakdown the work so small pieces can be merged
I recommend ship for tracking issues.
Patches are a great way to clarify what work needs to be done.
Patches on available
issues help clarify where the code should go and are often clearer than English.
Tips:
- write some pseudo-code or add comments where code should go
- add a diff with diff code blocks
- use the [gist] cli to make diffs. I have a shortcut for
git diff | gist --type diff
- when gists are long you can include a link to a gist and this snippet in the issue
curl <raw-gist-url> | git apply
Here are the steps for getting a PR branch and then updating it
Getting Setup:
- http remote [github help][github-remote]
- 2fa [github help][github-2fa]
- personal access tokens [github help][github-pat]
Steps:
git remote add <username> https://github.com/<username>/debugger.html.git
git fetch <username>
git checkout --track <username>/<pr-branch>
git pull --rebase # if you want to get new changes
git push <username> <pr-branch>
git push -f <username> <pr-branch> # sadly you often need to push force
Notes:
- Don't worry about including
--force
, often it's inevitable if you're helping with a rebase. - It's best to include your work as a separate commit so the contributor can easily see the patch.