๐Ÿ“ Git & GitHub

GitHub Issues: Tasks, Bugs, and Ideas in One Place ๐Ÿ›

P
Author
PyLand Team
๐Ÿ“…
Published
06.05.2026
โฑ๏ธ
Reading time
3 min
๐Ÿ‘๏ธ
Views
386
๐ŸŒฟ
Level
Medium

GitHub Issues is the built-in task tracker in every repository. It’s where bugs are discussed, features are requested, and team work is coordinated.

What Is an Issue?

An issue is a discussion thread tied to a repository. It can be:

  • ๐Ÿ› Bug โ€” “the login button doesn’t work on mobile”
  • ๐Ÿ’ก Feature idea โ€” “I’d like a dark theme”
  • โ“ Question โ€” “how do I configure environment variables correctly?”
  • ๐Ÿ“‹ Task โ€” “need to add a route for Chicago”
  • ๐Ÿš€ Improvement โ€” “the registration form is too slow”

How to Find Issues

Go to any repository โ†’ Issues tab.

Filters

is:open   โ€” open (in progress)
is:closed โ€” closed (resolved)
label:bug โ€” bugs only
label:help-wanted โ€” looking for help
label:good-first-issue โ€” good tasks for beginners โ† your go-to!
author:username โ€” issues by a specific user

How to Create an Issue

When you found a bug

  1. Open the Issues tab โ†’ New issue
  2. Write a clear title: Login button doesn't work on iOS
  3. In the description include:
## What happens
Clicking the "Login" button on iPhone does nothing.

## How to reproduce
1. Open the site on iPhone (iOS 17.2)
2. Click "Login"
3. Nothing happens, the page doesn't change

## Expected behavior
Navigate to the login page or open the login form.

## Environment
- Device: iPhone 13
- Browser: Safari 17
- App version: 2.3.1

When you want to suggest an improvement

## Idea
Add dark theme support.

## Why
30% of users have dark mode enabled in their OS settings,
our site doesn't support it and looks uncomfortable.

## Proposal
Use CSS `prefers-color-scheme` for auto-detection
and add a manual toggle in settings.

How to Pick Up an Issue (Open Source)

Step 1: Find a suitable task

Look for Issues with labels:
- good-first-issue โ€” specifically for newcomers
- help-wanted โ€” the team is looking for help
- beginner-friendly โ€” friendly tasks

Step 2: Say you’re taking it on

Before you start โ€” leave a comment:

Hi! I'd like to take this task. Planning to finish by end of the week.
Am I understanding correctly that I need to add a route for [city]?

This is important because:
- You don’t waste time if someone else is already working on it
- The team knows the task is being handled
- The maintainer can provide clarification

Step 3: Do the work and create a PR

In the PR description, reference the Issue:

Closes #42

When the PR is merged, this will automatically close Issue #42.

Keywords to Close an Issue

In a PR description or comment you can write:

Closes #42
Fixes #42
Resolves #42

GitHub will automatically close the Issue when the PR is merged into main.

Labels

Labels are colored tags for classifying Issues:

Label Meaning
bug Something is broken
enhancement New feature or improvement
documentation Documentation needed
good first issue Good for newcomers
help wanted Team is looking for help
question A question, not a task
wontfix Won’t be fixed (intentional)
duplicate This Issue already exists

Assignees

An assignee is the person responsible for resolving the Issue.

In a team project: the team lead assigns Issues to specific developers.
In open source: you can ask to be assigned, or the maintainer will do it.

Milestones

A milestone is a group of Issues tied to a common goal or deadline:

Milestone: v2.0 (deadline: June 1)
โ”œโ”€โ”€ Issue #41: Dark theme
โ”œโ”€โ”€ Issue #42: Mobile version
โ””โ”€โ”€ Issue #43: API documentation

Helps track progress toward a release.

Issues and Projects

GitHub Projects is a task board (like Trello) built into GitHub.
Issues automatically show up on the board.

Backlog โ†’ In Progress โ†’ Review โ†’ Done
  #41        #42          #43      #44

Issue Etiquette

Search before creating

Check that a similar Issue doesn’t already exist. Duplicates are a common problem in popular projects.

Issues โ†’ filter โ†’ enter keywords

One Issue = one problem

โŒ Bad: "bugs in the mobile version and bad navigation and..."

โœ… Good:
Issue #50: login button doesn't work on iOS
Issue #51: bad navigation on mobile

Be polite

Maintainers are often volunteers working on the project in their free time.

โŒ "Why hasn't this been fixed yet?! It's been broken for a year!"

โœ… "Hey! I ran into this bug, just wanted to check โ€” is this a known issue?
   Happy to help with a fix if you can point me in the right direction."

Issues in a Team Project

In a closed team project, Issues serve as your task tracker:

  1. The team lead creates Issues for each task
  2. Assigns Issues to developers
  3. Developers create branches and PRs referencing the Issues
  4. PR is merged โ†’ Issue closes automatically

This creates full traceability: from the Issue you can see which PR resolved it,
from the PR you can see which task it addressed.

Your reaction to the article

๐Ÿ’ฌ Comments (0)

๐Ÿ” Sign in to leave a comment
๐Ÿšช Login
๐Ÿ’ญ

No comments yet

Be the first to share your opinion about this article!

๐Ÿ”— Similar

Similar articles

Continue learning with these materials

๐Ÿ“

Undo and Revert in GitHub Desktop: Fix Mistakes Wโ€ฆ

A commit is not a point of no return. GitHub Desktop lets you rebuild a...

๐Ÿ“… 16.07.2026 ๐Ÿ‘๏ธ 359
๐Ÿ“

History, Diffs, and Web Commits on GitHub

GitHub lets you read repository history, inspect individual commit diffs, view the history of one...

๐Ÿ“… 16.07.2026 ๐Ÿ‘๏ธ 312
๐Ÿ“

Your First Git Commit

Your first commit starts with initializing a repository, configuring the author identity, and selecting the...

๐Ÿ“… 30.06.2026 ๐Ÿ‘๏ธ 342
๐ŸŽ“ Continue learning

Courses that cover this material

Visit the course to apply this material in practice.

Git & GitHub Desktop: Teamwork Without the Pain Open course curriculum