Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to simulate voting in GitHub's Issues 2.0 Tracker

I'm considering moving my open-source project Flyway from Google Code to GitHub.

One of the features I really like in Google Code's Issue Tracker is the ability to vote and sort issues by the number of votes. This has allowed me to get a good feel of where current pain points lie and what the community feels needs attention or further work.

How can I achieve something similar on GitHub? Is there a way to maintain a democratic approach to Issue Tracking?

like image 370
Axel Fontaine Avatar asked Jul 08 '12 08:07

Axel Fontaine


2 Answers

There is no built-in ability to do so. Technically speaking, you can only manage issues by

  • assignee
  • tags (called labels at github)
  • milestones

While you can define label systems for lots of differentation criteria like

  • bug/feature request/...
  • prio high/low/...
  • status verified/unverified

it is simply not possible to have something that accumulates votes. So typically you will see "+1" postings as in good old mailing lists. I've seen people using external voting systems (like Google moderator) for issues on github, but that doesn't make a good user experience either.

like image 144
Bananeweizen Avatar answered Nov 20 '22 23:11

Bananeweizen


If you're willing to use a third-party system that integrates with GitHub, you can try GitPoll.

like image 30
Edward Brey Avatar answered Nov 21 '22 00:11

Edward Brey