Skip to content

Instantly share code, notes, and snippets.

@coilysiren
Last active September 16, 2016 10:40
Show Gist options
  • Save coilysiren/6bf72836b41c64c0bf13bd95574746b6 to your computer and use it in GitHub Desktop.
Save coilysiren/6bf72836b41c64c0bf13bd95574746b6 to your computer and use it in GitHub Desktop.

The goal of issue organization is help team members appraise the work that an issue requires, without having to read it. An open issue represents a problem that requires work on behalf of the team to solve the problem it describes. Issues that do not describe a specific problem will be closed, but can (and often should) be used for discussion.

assorted links:


status labels

Status labels represent the "state" of work on an issue. Status labels will change (sometimes frequently) over the life of an issue. For example, an issue created by an end user might follow this path:

created => triage => user feedback required => triage => working / ready => closed

An issue created by a team member might follow this path:

created => working / ready => backlog => confirmed => working / ready => closed

Some of these labels represent when work can be done, specifically

  • working / ready => now
  • confirmed => in the near future
  • backlog => in the far future

status: triage

The "default" label, gets applied when an end user describes a problem whose cause is unknown. triage issues require a collaboration between developer and end user in order to be resolved. triage issues move to working / ready if they require a change with our code, and they are closed if they require a change in the users local setup (ex: permission errors).

status: user feedback required

Requires more feedback from the an end user. Generally information such as their OS, library versions, how they were using our code, etc. Issues with user feedback required need a team member to ping to end user 1 - 3 times over the course of days / weeks. If the user does not respond, the issue can be closed.

status: working / ready

Ready for work, or already being worked on. Issues usually start with this label when they are created by a team member.

status: confirmed

Needs few days / weeks before we can begin work, and move it to working / ready. This usually means that it requires a feature that will be in the next release.

status: backlog

Needs weeks / several months before we can begin work, and move it to working / ready. This usually means that it requires large / backwards incompatible changes.


type labels

Type labels describe the area of work the needs to be done in order to resolve an issue

type: bug report

A bug that requires a change in our code to solve.

type: feature request

A request for a new feature to be added into our code. May sometimes be hard to distinguish from a bug report.

type: question

A question was asked and the issue can be closed when somebody provides an answer

type: documentation

The issue involves updating a readme, wiki, or some other sort of documentation

type: administrative

The issue describes administrative tasks such as: ownership of the code, feature roadmaps, work to be done by the project's managing organization, etc

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment