Skip to content

Commit

Permalink
Migrate imports to using zendesk org
Browse files Browse the repository at this point in the history
Instead of importing github.com/ragurney/term-check, use github.com/zendesk/term-check
  • Loading branch information
Sid Karunaratne committed Mar 14, 2019
1 parent 462ebe8 commit 5baa854
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM golang:1.11-alpine AS build_base

RUN apk add bash ca-certificates git gcc g++ libc-dev
WORKDIR /go/src/github.com/ragurney/term-check
WORKDIR /go/src/github.com/zendesk/term-check

ENV GO111MODULE=on

Expand All @@ -22,6 +22,6 @@ FROM alpine AS term-check
RUN apk add ca-certificates

COPY --from=server_builder /go/bin/term-check /bin/term-check
COPY --from=server_builder /go/src/github.com/ragurney/term-check/config.yaml .
COPY --from=server_builder /go/src/github.com/zendesk/term-check/config.yaml .

ENTRYPOINT ["/bin/term-check", "--config", "config.yaml"]
4 changes: 2 additions & 2 deletions cmd/term-check/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"

"github.com/ragurney/term-check/internal/bot"
"github.com/ragurney/term-check/internal/config"
"github.com/zendesk/term-check/internal/bot"
"github.com/zendesk/term-check/internal/config"
)

var filepath = flag.String("config", "config.yaml", "Location of the configuration file.")
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/ragurney/term-check
module github.com/zendesk/term-check

require (
github.com/bradleyfalzon/ghinstallation v0.1.2
Expand Down
6 changes: 3 additions & 3 deletions internal/bot/bot.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import (
"time"

"github.com/google/go-github/v18/github"
"github.com/ragurney/term-check/internal/config"
gh "github.com/ragurney/term-check/pkg/github"
"github.com/ragurney/term-check/pkg/lib"
"github.com/zendesk/term-check/internal/config"
gh "github.com/zendesk/term-check/pkg/github"
"github.com/zendesk/term-check/pkg/lib"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
"github.com/waigani/diffparser"
Expand Down
2 changes: 1 addition & 1 deletion internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"gopkg.in/yaml.v2"
"io/ioutil"

"github.com/ragurney/term-check/pkg/config"
"github.com/zendesk/term-check/pkg/config"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
)
Expand Down

0 comments on commit 5baa854

Please sign in to comment.