Skip to content

Latest commit

 

History

History
35 lines (31 loc) · 1.55 KB

README.md

File metadata and controls

35 lines (31 loc) · 1.55 KB

github-contrib-stats

this repository is originally forked from https://github.com/yshnb/github-stat but with different design purpose. except statistics analysis of the numbers of merged/LGTM'ed/NonLGTM'ed(open) PRs in specified repos for specified user(s) , lots of other features are planed.

Usage

  1. go get -u github.com/google/go-github/github
  2. go get -u github.com/mgutz/ansi
  3. go get -u golang.org/x/oauth2
  4. go get -u github.com/olekukonko/tablewriter
  5. go get -u github.com/BurntSushi/toml
  6. git clone https://github.com/bruceauyeung/github-contrib-stats
  7. cd ./github-contrib-stats
  8. cp config.toml.dist config.toml
  9. fill in accessToken field in config.toml, you can generate one from https://github.com/settings/tokens (make sure repo scope is checked)
  10. fill in other fields in config.toml.

After, you can run the below command

$ go run main.go

the outputs may look like the following:

metrics: pull request stat analysis
kubernetes/charts : listing open pull requests
kubernetes/charts : listing closed pull requests
 ......(some outputs ignored)
+--------------+------------+----------------+-------------+----------------+
|  USER NAME   | MERGED PRS | MERGED COMMITS | LGTM'ED PRS | NONLGTM'ED PRS |
+--------------+------------+----------------+-------------+----------------+
| bruceauyeung |         10 |             11 |           0 |              6 |
| tanshanshan  |          8 |              8 |           0 |              7 |
+--------------+------------+----------------+-------------+----------------+