Skip to content

Commit

Permalink
feat: Adding new feature for stats
Browse files Browse the repository at this point in the history
This script will pull back stats on a given repo and output the findings
  • Loading branch information
jackstockley89 committed Feb 9, 2022
1 parent c7b196e commit e8d2ba6
Show file tree
Hide file tree
Showing 5 changed files with 518 additions and 0 deletions.
10 changes: 10 additions & 0 deletions stats/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM golang:1.17

WORKDIR /go/src/app
COPY . .

RUN go get -d -v ./...
RUN go install -v ./...
RUN go build .

CMD ["stats"]
16 changes: 16 additions & 0 deletions stats/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
module github.com/jackstockley89/github-actions/stats

go 1.17

require (
github.com/google/go-github v17.0.0+incompatible
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8
)

require (
github.com/golang/protobuf v1.4.2 // indirect
github.com/google/go-querystring v1.1.0 // indirect
golang.org/x/net v0.0.0-20200822124328-c89045814202 // indirect
google.golang.org/appengine v1.6.6 // indirect
google.golang.org/protobuf v1.25.0 // indirect
)
Loading

0 comments on commit e8d2ba6

Please sign in to comment.