## Maintainer Tips Helping maintain a project is the best way to contribute to its overall health. + [Triaging Issues](#triaging-issues) + [Making Bugs Actionable](#making-bugs-actionable) + [Reviewing Stale Issues](#reviewing-stale-issues) + [Making Issues available](#making-issues-available) + [Following up on In Progress work](#following-up-on-in-progress-work) + [Adding a Patch](#adding-a-patch) + [Pushing to a branch](#pushing-to-a-branch) ### Triaging Issues We encourage the community to help make bugs actionable, make features available, and close stale issues. Triaging is one of the most important contributions a community member can make for a projects health. Stave Klabnik's [article][gardening] on how to be an open source gardener expresses our values. #### Making Bugs Actionable Bugs are labeled [`not-actionable`][na] when they are filed. Here is a checklist for making bugs actionable: 1. Check for duplicate bugs 2. Verify that the bug is reproducible 3. Define steps to reproduce with expected and actual results 4. Create a small test case. We have a [glitch] template for sharing examples. 5. Add [labels](./issues.md#labels) #### Reviewing Stale Issues 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] #### Making Issues available Available is short for two things: 1. a clearly defined specification (end-state) 2. 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: 1. investigate the issue and answer questions that you have 2. share questions or offer reasonable solutions that can be implemented 3. [add a patch](#adding-a-patch) to help the person who picks up the issue #### Following up on In Progress work 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: 1. asking what their timeline is 2. asking if they are blocked or if you can help 3. offer to pair or talk on slack. 4. try to breakdown the work so small pieces can be merged #### Ship I recommend [ship] for tracking issues. ![][ship-screenshot] ### Adding a patch 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 | git apply` ### Pushing to a branch Here are the steps for getting a PR branch and then updating it Getting Setup: 1. **http remote** [github help][github-remote] 2. **2fa** [github help][github-2fa] 3. **personal access tokens** [github help][github-pat] Steps: ```bash git remote add https://github.com//debugger.html.git git fetch git checkout --track / git pull --rebase # if you want to get new changes git push git push -f # 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. [enhancements board]: https://github.com/devtools-html/debugger.html/projects/5 [ship]: https://www.realartists.com [ship-screenshot]: https://cloud.githubusercontent.com/assets/254562/23369201/8fe98b82-fcde-11e6-9dac-3e40547f29ad.png [github-2fa]:https://help.github.com/articles/securing-your-account-with-two-factor-authentication-2fa/ [github-pat]:https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line/ [github-remote]:https://help.github.com/articles/adding-a-remote/ [gardening]: http://words.steveklabnik.com/how-to-be-an-open-source-gardener [glitch]:https://fabulous-umbrella.glitch.me/ [na]: https://github.com/devtools-html/debugger.html/labels/not-actionable