From 9efdfa998b53e4160d7f342d31aee92822395b57 Mon Sep 17 00:00:00 2001 From: Anubhav Mishra Date: Mon, 31 Jul 2017 13:27:44 -0700 Subject: [PATCH] Update bootstrap example repo (#90) * bootstrap mode will now fork hootsuite/atlantis-example repo * use hootsuite repo name for creating pull request --- bootstrap/bootstrap.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bootstrap/bootstrap.go b/bootstrap/bootstrap.go index bda81ee8bf..ab1f4a831e 100644 --- a/bootstrap/bootstrap.go +++ b/bootstrap/bootstrap.go @@ -19,8 +19,8 @@ import ( "os/signal" ) -var terraformExampleRepoOwner = "airauth" -var terraformExampleRepo = "example" +var terraformExampleRepoOwner = "hootsuite" +var terraformExampleRepo = "atlantis-example" var bootstrapDescription = `[white]Welcome to Atlantis bootstrap! @@ -170,7 +170,7 @@ Follow these instructions to create a token (we don't store any tokens): // create a new pr in the example repo colorstring.Printf("[white]=> creating a new pull request ") s.Start() - pullRequestURL, err := githubClient.CreatePullRequest(githubUsername, "example", "example", "master") + pullRequestURL, err := githubClient.CreatePullRequest(githubUsername, terraformExampleRepo, "example", "master") if err != nil { return errors.Wrapf(err, "creating new pull request for repo %s/%s", githubUsername, terraformExampleRepo) }