Skip to content

Commit 4e57f28

Browse files
committed
chore(workflow-cli): Moving to teamhephy org - links
1 parent 731f842 commit 4e57f28

109 files changed

Lines changed: 208 additions & 202 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Contributing to Deis
22

33
This project is part of Deis. You can find the latest contribution
4-
guidelines [in our documentation](https://deis.com/docs/workflow/contributing/overview/).
4+
guidelines [in our documentation](https://docs.teamhephy.com/contributing/overview/).

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM quay.io/deis/go-dev:v0.22.0
1+
FROM hephy/go-dev:v0.22.0
22
# This Dockerfile is used to bundle the source and all dependencies into an image for testing.
33

44
RUN echo "deb http://packages.cloud.google.com/apt cloud-sdk-jessie main" \
@@ -15,13 +15,13 @@ ENV CGO_ENABLED=0
1515
ADD https://codecov.io/bash /usr/local/bin/codecov
1616
RUN chmod +x /usr/local/bin/codecov
1717

18-
COPY glide.yaml /go/src/github.com/deis/workflow-cli/
19-
COPY glide.lock /go/src/github.com/deis/workflow-cli/
18+
COPY glide.yaml /go/src/github.com/teamhephy/workflow-cli/
19+
COPY glide.lock /go/src/github.com/teamhephy/workflow-cli/
2020

21-
WORKDIR /go/src/github.com/deis/workflow-cli
21+
WORKDIR /go/src/github.com/teamhephy/workflow-cli
2222

2323
RUN glide install --strip-vendor
2424

2525
COPY ./_scripts /usr/local/bin
2626

27-
COPY . /go/src/github.com/deis/workflow-cli
27+
COPY . /go/src/github.com/teamhephy/workflow-cli

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# the filepath to this repository, relative to $GOPATH/src
2-
repo_path = github.com/deis/workflow-cli
2+
repo_path = github.com/teamhephy/workflow-cli
33

44
HOST_OS := $(shell uname)
55
ifeq ($(HOST_OS),Darwin)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# Deis Client
1919

2020
[![Build Status](https://ci.deis.io/buildStatus/icon?job=Deis/workflow-cli/master)](https://ci.deis.io/job/Deis/job/workflow-cli/job/master/)
21-
[![Go Report Card](https://goreportcard.com/badge/github.com/deis/workflow-cli)](https://goreportcard.com/report/github.com/deis/workflow-cli)
21+
[![Go Report Card](https://goreportcard.com/badge/github.com/teamhephy/workflow-cli)](https://goreportcard.com/report/github.com/teamhephy/workflow-cli)
2222
[![codebeat badge](https://codebeat.co/badges/05d314a8-ca61-4211-b69e-e7a3033662c8)](https://codebeat.co/projects/github-com-deis-workflow-cli)
2323
[![codecov](https://codecov.io/gh/deis/workflow-cli/branch/master/graph/badge.svg)](https://codecov.io/gh/deis/workflow-cli)
2424

cmd/apps.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ import (
66
"strings"
77
"time"
88

9-
"github.com/deis/controller-sdk-go/api"
10-
"github.com/deis/controller-sdk-go/apps"
11-
"github.com/deis/controller-sdk-go/config"
12-
"github.com/deis/controller-sdk-go/domains"
13-
"github.com/deis/workflow-cli/pkg/git"
14-
"github.com/deis/workflow-cli/pkg/logging"
15-
"github.com/deis/workflow-cli/pkg/webbrowser"
16-
"github.com/deis/workflow-cli/settings"
9+
"github.com/teamhephy/controller-sdk-go/api"
10+
"github.com/teamhephy/controller-sdk-go/apps"
11+
"github.com/teamhephy/controller-sdk-go/config"
12+
"github.com/teamhephy/controller-sdk-go/domains"
13+
"github.com/teamhephy/workflow-cli/pkg/git"
14+
"github.com/teamhephy/workflow-cli/pkg/logging"
15+
"github.com/teamhephy/workflow-cli/pkg/webbrowser"
16+
"github.com/teamhephy/workflow-cli/settings"
1717
)
1818

1919
// AppCreate creates an app.

cmd/apps_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010

1111
"github.com/arschles/assert"
1212

13-
"github.com/deis/workflow-cli/pkg/git"
14-
"github.com/deis/workflow-cli/pkg/testutil"
15-
"github.com/deis/workflow-cli/settings"
13+
"github.com/teamhephy/workflow-cli/pkg/git"
14+
"github.com/teamhephy/workflow-cli/pkg/testutil"
15+
"github.com/teamhephy/workflow-cli/settings"
1616
)
1717

1818
type expandURLCases struct {

cmd/auth.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"strings"
77
"syscall"
88

9-
deis "github.com/deis/controller-sdk-go"
10-
"github.com/deis/controller-sdk-go/auth"
11-
"github.com/deis/workflow-cli/settings"
9+
deis "github.com/teamhephy/controller-sdk-go"
10+
"github.com/teamhephy/controller-sdk-go/auth"
11+
"github.com/teamhephy/workflow-cli/settings"
1212
"golang.org/x/crypto/ssh/terminal"
1313
)
1414

cmd/auth_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"testing"
88

99
"github.com/arschles/assert"
10-
"github.com/deis/workflow-cli/pkg/testutil"
10+
"github.com/teamhephy/workflow-cli/pkg/testutil"
1111
)
1212

1313
func TestRegister(t *testing.T) {

cmd/autoscale.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package cmd
22

33
import (
4-
"github.com/deis/controller-sdk-go/api"
5-
"github.com/deis/controller-sdk-go/appsettings"
4+
"github.com/teamhephy/controller-sdk-go/api"
5+
"github.com/teamhephy/controller-sdk-go/appsettings"
66
)
77

88
// AutoscaleList tells the informations about app's autoscale status

cmd/autoscale_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"testing"
88

99
"github.com/arschles/assert"
10-
"github.com/deis/controller-sdk-go/api"
11-
"github.com/deis/workflow-cli/pkg/testutil"
10+
"github.com/teamhephy/controller-sdk-go/api"
11+
"github.com/teamhephy/workflow-cli/pkg/testutil"
1212
)
1313

1414
func TestAutoscaleList(t *testing.T) {

0 commit comments

Comments
 (0)