DEV Community

Deveesh Shetty
Deveesh Shetty

Posted on

Introduction to GitHub Issues

You maybe new to GitHub or you are using it from quite a long time. But, have you came across the Issues tab in any GitHub repository? If no, then no worries I will be covering about the Issue tab and how it can make an impact on an open source project.

Issue Tab
You may have seen this tab in GitHub, this is the Issues tab. The number you see next to it are the total issues which are currently Open.

What are GitHub Issues?

Issue is one of the feature by GitHub, it provides a way for the users to track tasks, bug fixes, feature requests, etc.

Why would I use GitHub Issues?

There are endless way for why you will be using the GitHub Issues tab, let me break down a few for you!

Raising a bug report

You are using an open source project, and you were trying something but the result you got was not the one you expected, you will be like (it is some bug in the project) and neglect it... No!! You are a good open source contributor it's your responsibility to let the developer know about the bug, so the best way is if the project is open sourced in GitHub, go to the issue tab and tell about the bug, elaborate on what you wanted and what result you got, provide some visual prove like screenshots or video (if possible). This will help the developer to reproduce the bug and fix it in next release!

Giving idea for a new feature

For instance, you are using a software and you have a very good feature which will improve the software. Why keeping the idea to yourself? Raise a new issue in GitHub and describe your idea in human language (yes, you don't even need to code), and mention how it can improve the project. Now anyone interested can take up the issue and start building the feature, even you can build it if you are interested in it, which is very much appreciated!

Note: Most of the softwares you use are open source, but you are not aware of it! I can list a few, VSCode, MonkeyType, Python, Android, Linux, Brave Browser and many more... ✨

How to create a new Issue?

If you found a bug, or you have a new feature Idea. Go to the GitHub repository of the project and click the Issues tab. In there click the New Issue button and describe the bug or feature and Submit voila! you have created a new Issue, also you have a green square in your GitHub heatmap 😉.

Some Notes:

  • Before creating an issue make sure there is no similar issue already opened, so it will save your's as well as the maintainer's time.
  • Don't create random issues in repositories, always make sure you have correctly mentioned your plan or described the bug.
  • Use markdown to describe your issue by using todo-lists, heading, code blocks and many more :)

How to find issues to work as a beginner?

If you are beginner you can find the issues in GitHub repository by filtering with labels like good first issue or first-timers-only or documentation which will help you do your first open source contribution. Most of the repos have these labels which makes it easier for beginners to contribute.

How to work on issues?

Once you found a good issue which you feel like you can work on, put a comment in there that you want to solve it or implement it. So the maintainer can assign you the issue which will make sure no 2 people are working on same issue, which is waste of time for both. Also in contrary, if the issue is already assigned to someone you can't work on it because "Early bird gets the worm". Don't worry try finding another issue there are many...

Now you have the issue assigned, fork and clone the repository and create a new branch and start working (don't know what is branching? check it out here). Once you have a solution for the issue then proceed by creating a Pull Request (PR), now it's maintainers turn to review and merge your PR. If they need any changes do the needful :)

I will be covering about Pull Requests in my upcoming blogs stay tuned for that!
Thanks for sticking till the end... that's all for this blog, let me know your opinions and suggestions so I can improve my future blogs 😄

Deveesh Shetty
Github | Twitter

Top comments (2)

Collapse
 
not-ethan profile image
Ethan

I love this post. I think it would be better if links to GH documentation about things like PRs were included for people who dont know what they are, or how to make them.

And IMO for people brand new to contributing to projects I think documentation is the best since it will help to learn how to contribute to that project specifically and the flow of contributing.

Collapse
 
devshetty profile image
Deveesh Shetty

Yeah! Good point, I will link to specific resources.

And IMO for people brand new to contributing to projects I think documentation is the best since it will help to learn how to contribute to that project specifically and the flow of contributing.

Agree with you... documentation is a good to start, it will build up their confidence.