moby--moby/project/ISSUE-TRIAGE.md

4.7 KiB

Triaging of issue

Triage provides an important way to contribute to an open source project. Triage helps ensure issues resolve quickly by:

  • Describing the issue's intent and purpose is conveyed precisely. This is necessary because it can be difficult for an issue to explain how an end user experiences an problem and what actions they took.

  • Giving a contributor the information they need before they commit to resolving an issue.

  • Lowering the issue count by preventing duplicate issues.

  • Streamling the development process by preventing duplicate discussions.

If you don't have time to code, consider helping with triage. The community will thank you for saving them time by spending some of yours.

Step 1: Ensure the issue contains basic information

Before triaging an issue very far, make sure that the issue's author provided the standard issue information. This will help you make an educated recommendation on how this to categorize the issue. Standard information that must be included in most issues are things such as:

  • the output of docker version
  • the output of docker info
  • the output of uname -a
  • a reproducible case if this is a bug, Dockerfiles FTW
  • host distribution and version ( ubuntu 14.04, RHEL, fedora 21 )
  • page URL if this is a docs issue

Depending on the issue, you might not feel all this information is needed. Use your best judgement. If you cannot triage an issue using what its author provided, explain kindly to the author that they must provide the above information to clarify the problem.

If the author provides the standard information but you are still unable to triage the issue, request additional information. Do this kindly and politely because you are asking for more of the author's time.

If the author does not respond requested information within the timespan of a week, close the issue with a kind note stating that the author can request for the issue to be reopened when the necessary information is provided.

Step 2: Apply the template

When triaging, use the standard template below. You should cut and place the template in the issue's description. The template helps other reviewers find key information in an issue. For example, using a template saves a potential contributor from wading though 100s of comments to find a proposed solution at the very end. When adding the template to the issue's description also add any required labels to the issue for the classification and difficulty.

Here is a sample summary for an issue.

**Summary**: docker rm can return a non-zero exit code if the container does not
exist and it is not easy to parse the error message.

**Proposed solution**:

docker rm should have consistent exit codes for different types of errors so
that the user can easily script and know the reason why the command failed. 

Step 3: Classify the Issue

Classifications help both to inform readers about an issue's priority and how to resolve it. This is also helpful for identifying new, critical issues. Classifications types are applied to the issue or pull request using labels.

Types of classification:

Type Description
improvement improvements are not bugs or new features but can drastically improve usability.
regression regressions are usually easy fixes as hopefully the action worked previously and git history can be used to propose a solution.
bug bugs are bugs. The cause may or may not be known at triage time so debugging should be taken account into the time estimate.
feature features are new and shinny. They are things that the project does not currently support.

Step 4: Estimate the Difficulty

Difficulty is a way for a contributor to find an issue based on their skill set. Difficulty types are applied to the issue or pull request using labels.

Difficulty

Type Description
white-belt Simple, non-time consuming issue, easy first task to accomplish
black-belt Expert at the subject matter or someone who likes pain

And that's it. That should be all the information required for a new or existing contributor to come in an resolve an issue.