项目作者: nicokosi

项目描述 :
Command-line for GitHub pull request statistics
高级语言: Clojure
项目地址: git://github.com/nicokosi/hubstats.git
创建时间: 2016-11-02T17:26:08Z
项目社区:https://github.com/nicokosi/hubstats

开源协议:

下载


hubstats Build Status

hubstats is a command line tool to count opened/closed/commented GitHub pull requests.

Prerequisite

Install Leiningen and run it on Java 11+.

Usage

  1. lein run --organization $organization --repository $repository

If an access token is required:

  1. lein run --organization $organization --repository $repository --token "$token"

Output example:

  1. pull requests for softwarevidal/arthur ->
  2. since 1 week(s):
  3. 10 opened / 14 closed / 10 commented (90 comments)
  4. opened per author: {"jprudent" 4, "cmahalin" 4, "omabrouki" 1, "AElMehdiVidal" 1}
  5. comments per author: {"vidal-rm" 68, "jcgay" 11, "nicokosi" 3, "jprudent" 3, "AElMehdiVidal" 3, "omabrouki" 2}
  6. closed per author: {"cmahalin" 7, "nicokosi" 3, "jcgay" 2, "jprudent" 1, "AElMehdiVidal" 1}

List of all parameters:

  1. lein run

will output:

  1. Count opened/closed/commented GitHub pull requests.
  2. Mandatory parameters:
  3. --organization GitHub organization
  4. -o GitHub organization (shorthand)
  5. --repository GitHub repository
  6. -r GitHub repository (shorthand)
  7. --token GitHub access token (optional)
  8. -t GitHub access token shorthand, optional)
  9. Optional parameters:
  10. --repositories Comma-separated list of repositories (optional)
  11. --since-weeks output events that occurred since this number of weeks (optional, default: 1)
  12. -w output events that occurred since this number of weeks (shorthand, optional, default: 1)
  13. --since-days output events that occurred since this number of days (optional)
  14. -d output events that occurred since this number of days (shorthand, optional)
  15. --since output events that occurred since a date with format '"yyyy-MM-dd'T'HH:mm:ssZ' (optional)
  16. -s output events that occurred since a date with format '"yyyy-MM-dd'T'HH:mm:ssZ' (shorthand, optional)
  17. Examples:
  18. lein run --organization docker --repository containerd --token "$token"
  19. lein run --organization docker --repository containerd --since "2017-01-17T00:00:00Z"
  20. lein run --organization docker --repository containerd --since-days 10
  21. lein run --organization docker --repositories docker,containerd

More command examples:

  1. lein run --organization docker --repository containerd --token $token
  2. lein run --organization docker --repository containerd --since "2017-01-17T00:00:00Z"
  3. lein run --organization docker --repository containerd --since-days 10
  4. lein run --organization docker --repositories docker,containerd

Command line installation

As a portable Java application

Create JAR with all dependencies:

  1. lein uberjar

Then launch (note that Java is required):

  1. java -jar target/hubstats-*-standalone.jar

On Unix-like systems, you can create an executable via the following command:

  1. ./make-exec.sh hubstats

This executable, which requires Java, can be moved to /usr/local/bin, for example.

As a *nix native executable

Create a native executable via GraalVM running ./generate-executable.sh. Only works for Linux and macOS.

Developer tasks

Run tests

  1. lein test

Run the code linter

Install clj-kondo, then run:

  1. clj-kondo --lint .

Format the code

Check:

  1. lein cljfmt check

Format:

  1. lein cljfmt fix

Display dependencies

Display all dependencies, as a tree:

  1. lein deps :tree-data

Display outdated dependencies:

  1. lein ancient

Upgrade dependencies

  1. lein ancient upgrade