Skip to content

Commit 9510351

Browse files
committed
Renamed the Github organization after the migration to https://github.com/gitlabhq
1 parent d9818d1 commit 9510351

File tree

7 files changed

+95
-95
lines changed

7 files changed

+95
-95
lines changed

CHANGELOG.md

Lines changed: 80 additions & 80 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ Terraform Provider for Gitlab
77
- [![Gitter chat](https://badges.gitter.im/hashicorp-terraform/Lobby.png)](https://gitter.im/hashicorp-terraform/Lobby)
88
- Mailing list: [Google Groups](http://groups.google.com/group/terraform-tool)
99
- Build status:
10-
- ![Unit Tests](https://github.com/terraform-providers/terraform-provider-gitlab/workflows/Unit%20Tests/badge.svg?branch=master)
11-
- ![Acceptance Tests](https://github.com/terraform-providers/terraform-provider-gitlab/workflows/Acceptance%20Tests/badge.svg?branch=master)
12-
- ![Website Build](https://github.com/terraform-providers/terraform-provider-gitlab/workflows/Website%20Build/badge.svg?branch=master)
10+
- ![Unit Tests](https://github.com/gitlabhq/terraform-provider-gitlab/workflows/Unit%20Tests/badge.svg?branch=master)
11+
- ![Acceptance Tests](https://github.com/gitlabhq/terraform-provider-gitlab/workflows/Acceptance%20Tests/badge.svg?branch=master)
12+
- ![Website Build](https://github.com/gitlabhq/terraform-provider-gitlab/workflows/Website%20Build/badge.svg?branch=master)
1313

1414
Requirements
1515
------------
@@ -20,17 +20,17 @@ Requirements
2020
Building The Provider
2121
---------------------
2222

23-
Clone repository to: `$GOPATH/src/github.com/terraform-providers/terraform-provider-gitlab`
23+
Clone repository to: `$GOPATH/src/github.com/gitlabhq/terraform-provider-gitlab`
2424

2525
```sh
26-
$ mkdir -p $GOPATH/src/github.com/terraform-providers; cd $GOPATH/src/github.com/terraform-providers
27-
$ git clone [email protected]:terraform-providers/terraform-provider-gitlab
26+
$ mkdir -p $GOPATH/src/github.com/gitlabhq; cd $GOPATH/src/github.com/gitlabhq
27+
$ git clone [email protected]:gitlabhq/terraform-provider-gitlab
2828
```
2929

3030
Enter the provider directory and build the provider
3131

3232
```sh
33-
$ cd $GOPATH/src/github.com/terraform-providers/terraform-provider-gitlab
33+
$ cd $GOPATH/src/github.com/gitlabhq/terraform-provider-gitlab
3434
$ make build
3535
```
3636

gitlab/resource_gitlab_group_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ func testAccCheckGitlabGroupDisappears(group *gitlab.Group) resource.TestCheckFu
188188
return err
189189
}
190190
// Fixes groups API async deletion issue
191-
// https://github.com/terraform-providers/terraform-provider-gitlab/issues/319
191+
// https://github.com/gitlabhq/terraform-provider-gitlab/issues/319
192192
for start := time.Now(); time.Since(start) < 15*time.Second; {
193193
g, resp, err := conn.Groups.GetGroup(group.ID)
194194
if resp != nil && resp.StatusCode == http.StatusNotFound {

gitlab/resource_gitlab_service_github_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func TestAccGitlabServiceGithub_basic(t *testing.T) {
2626
Config: testAccGitlabServiceGithubConfig(rInt),
2727
Check: resource.ComposeTestCheckFunc(
2828
testAccCheckGitlabServiceGithubExists(githubResourceName, &githubService),
29-
resource.TestCheckResourceAttr(githubResourceName, "repository_url", "https://github.com/terraform-providers/terraform-provider-gitlab"),
29+
resource.TestCheckResourceAttr(githubResourceName, "repository_url", "https://github.com/gitlabhq/terraform-provider-gitlab"),
3030
resource.TestCheckResourceAttr(githubResourceName, "static_context", "true"),
3131
),
3232
},
@@ -46,7 +46,7 @@ func TestAccGitlabServiceGithub_basic(t *testing.T) {
4646
Config: testAccGitlabServiceGithubConfig(rInt),
4747
Check: resource.ComposeTestCheckFunc(
4848
testAccCheckGitlabServiceGithubExists(githubResourceName, &githubService),
49-
resource.TestCheckResourceAttr(githubResourceName, "repository_url", "https://github.com/terraform-providers/terraform-provider-gitlab"),
49+
resource.TestCheckResourceAttr(githubResourceName, "repository_url", "https://github.com/gitlabhq/terraform-provider-gitlab"),
5050
resource.TestCheckResourceAttr(githubResourceName, "static_context", "true"),
5151
),
5252
},
@@ -155,7 +155,7 @@ resource "gitlab_project" "foo" {
155155
resource "gitlab_service_github" "github" {
156156
project = "${gitlab_project.foo.id}"
157157
token = "test"
158-
repository_url = "https://github.com/terraform-providers/terraform-provider-gitlab"
158+
repository_url = "https://github.com/gitlabhq/terraform-provider-gitlab"
159159
}
160160
`, rInt)
161161
}

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/terraform-providers/terraform-provider-gitlab
1+
module github.com/gitlabhq/terraform-provider-gitlab
22

33
require (
44
github.com/hashicorp/terraform-plugin-sdk v1.13.1

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package main
22

33
import (
4+
"github.com/gitlabhq/terraform-provider-gitlab/gitlab"
45
"github.com/hashicorp/terraform-plugin-sdk/plugin"
5-
"github.com/terraform-providers/terraform-provider-gitlab/gitlab"
66
)
77

88
func main() {

website/docs/r/service_github.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ resource "gitlab_project" "awesome_project" {
2424
resource "gitlab_service_github" "github" {
2525
project = "${gitlab_project.awesome_project.id}"
2626
token = "REDACTED"
27-
repository_url = "https://github.com/terraform-providers/terraform-provider-gitlab"
27+
repository_url = "https://github.com/gitlabhq/terraform-provider-gitlab"
2828
}
2929
```
3030

@@ -34,7 +34,7 @@ The following arguments are supported:
3434

3535
* `project` - (Required) ID of the project you want to activate integration on.
3636

37-
* `repository_url` - (Required) The URL of the GitHub repo to integrate with, e,g, https://github.com/terraform-providers/terraform-provider-gitlab.
37+
* `repository_url` - (Required) The URL of the GitHub repo to integrate with, e,g, https://github.com/gitlabhq/terraform-provider-gitlab.
3838

3939
* `token` - (Required) A GitHub personal access token with at least `repo:status` scope.
4040

0 commit comments

Comments
 (0)