Labels & User Stories

Although both labels and milestones are optional additions to your project management tool, they are useful for categorizing your tasks and tracking larger initiatives.

Set up your labels

Labels are predefined tags on a task that can identify trends or be used for filters and searches.

Recommend Labels

You can choose whatever labels you want, but we recommend a few that we've found helpful. We've also specified the colors that we use for our labels, but feel free to use your own. I advise being intentional with them. They should increase value and not cause a lot of busywork. By default, most tasks should not require any labels.

Label
Color
Description
Customer Issue

Yellow

Flags a task that is linked to a customer submitted or customer-facing issue. These should be resolved as quickly as possible, usually within the next iteration.

Maintenance

Orange

This is a task that isn't specifically part of a user story and is not about feature development. Rather, it signals that this is purely an engineering task to improve the overall system.

Bug

Red

You know what a bug is.

Noncode

Purple

A task that requires significant time (more than an hour) and is not directly related to coding. For any documentation, use "Documentation" instead.

Documentation

Blue

A task that is focused on writing a design document or other documents.

Placeholder

Grey

It either needs to be broken up into meaningful tasks or is just a quick note.

Create your task/label/milestone repo

  • Go to your organization.

  • Click on the Repositories tab and click New repository.

  • Name the repository "tasks". Add the Description: "Reserved for iteration issues, labels, and milestones". Make sure the repository is Private or Internal so only your team can view it. Click Create repository.

  • Inside the new repository, select the Issues tab.

  • Click Labels.

  • There should be a default list of labels, most of which are useless. Edit the labels to meet your needs or follow the recommendations I listed above.

  • If you edited your labels to match ours, they should look like what's below.

Set up your user stories

User stories (or stories or milestones) are a collection of tasks that make up a larger initiative, such as a feature. Stories are central to agile development. A user story is the summed parts that fulfill value to the user or customer. Typically, you would release all tasks within a user story together. User stories should exist outside of your project management tool as part of your investment, design, and user acceptance testing. They are merely referenced by your tasks.

True, if you're talking Scrum. I'm not. To me, calling a task a user story doesn't make sense. A user story is a great way to give a "why" to a set of tasks while keeping the focus on the end-user.

I prefer the term "user story" over "story", "milestone", or heaven-help-us "epic" because, as with all things in product development, our actions should be centered around the value we offer our users. If something can be a "milestone" but not necessarily a "user story" because it doesn't relate to the user, you should think long and hard about why it'd be worth your attention. And if a user story is just a set of tasks that are bundled together to form a sprint, you are equally missing the point and focused more on productivity than effectiveness.

In GitHub, a user story is called a milestone. Just like with labels, you'll want a single repository for all of your milestones.

  • If you haven't already, you should follow the steps in the Set up your labels section above to create the "tasks" repository.

  • Inside the "tasks" repository, select the Issues tab.

  • Click Milestones, then click New milestone.

  • You can now give your milestone a Title and a Description. For the description, I recommend linking your investment documents, design documents, mocks, user acceptance testing, or whatever else you have to give context to the milestone.

Last updated