File tree Expand file tree Collapse file tree 10 files changed +12
-12
lines changed Expand file tree Collapse file tree 10 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ WORKDIR /go/src/app
66ADD . /go/src/app
77
88# RUN goreleaser release --skip-publish --snapshot --rm-dist
9- RUN go mod download && go build -o /go/bin/app changelog/cmd
9+ RUN go mod download && go build -o /go/bin/app github.com/jimschubert/ changelog/cmd
1010
1111FROM gcr.io/distroless/base-debian10
1212COPY --from=builder /go/bin/app /
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ import (
1717 log "github.com/sirupsen/logrus"
1818 "golang.org/x/oauth2"
1919
20- "changelog/model"
21- "changelog/service"
20+ "github.com/jimschubert/ changelog/model"
21+ "github.com/jimschubert/ changelog/service"
2222)
2323
2424const emptyTree = "master~1"
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import (
2323
2424 "github.com/google/go-github/v29/github"
2525
26- "changelog/model"
26+ "github.com/jimschubert/ changelog/model"
2727)
2828
2929func commits (items ... model.ChangeItem ) * []model.ChangeItem {
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ import (
2222 "github.com/jessevdk/go-flags"
2323 log "github.com/sirupsen/logrus"
2424
25- "changelog"
26- "changelog/model"
25+ "github.com/jimschubert/ changelog"
26+ "github.com/jimschubert/ changelog/model"
2727)
2828
2929var version = ""
Original file line number Diff line number Diff line change 1- module changelog
1+ module github.com/jimschubert/ changelog
22
33go 1.14
44
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import (
2323
2424 "github.com/google/go-github/v29/github"
2525
26- "changelog/model"
26+ "github.com/jimschubert/ changelog/model"
2727)
2828
2929type githubService struct {
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import (
1919
2020 "github.com/google/go-github/v29/github"
2121
22- "changelog/model"
22+ "github.com/jimschubert/ changelog/model"
2323)
2424
2525func Test_githubService_shouldExcludeViaRepositoryCommit (t * testing.T ) {
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ import (
3030 "github.com/google/go-github/v29/github"
3131 log "github.com/sirupsen/logrus"
3232
33- "changelog/model"
33+ "github.com/jimschubert/ changelog/model"
3434)
3535
3636var foundError = errors .New ("found" )
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ import (
2424 "github.com/google/go-github/v29/github"
2525 log "github.com/sirupsen/logrus"
2626
27- "changelog/model"
27+ "github.com/jimschubert/ changelog/model"
2828)
2929
3030// Store defines the functional interface for accessing a store of Git commits
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ package service
1717import (
1818 "testing"
1919
20- "changelog/model"
20+ "github.com/jimschubert/ changelog/model"
2121)
2222
2323func Test_applyPullPropertiesChangeItem (t * testing.T ) {
You can’t perform that action at this time.
0 commit comments