Skip to content

Commit

Permalink
Revert forking change (#1137)
Browse files Browse the repository at this point in the history
  • Loading branch information
kfcampbell committed Apr 29, 2022
1 parent 07137c7 commit 50320f5
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 20 deletions.
6 changes: 0 additions & 6 deletions github/data_source_github_repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,6 @@ func dataSourceGithubRepository() *schema.Resource {
Type: schema.TypeBool,
Computed: true,
},
"allow_forking": {
Type: schema.TypeBool,
Optional: true,
Default: true,
},
"default_branch": {
Type: schema.TypeString,
Computed: true,
Expand Down Expand Up @@ -234,7 +229,6 @@ func dataSourceGithubRepositoryRead(d *schema.ResourceData, meta interface{}) er
d.Set("allow_squash_merge", repo.GetAllowSquashMerge())
d.Set("allow_rebase_merge", repo.GetAllowRebaseMerge())
d.Set("allow_auto_merge", repo.GetAllowAutoMerge())
d.Set("allow_forking", repo.GetAllowForking())
d.Set("has_downloads", repo.GetHasDownloads())
d.Set("full_name", repo.GetFullName())
d.Set("default_branch", repo.GetDefaultBranch())
Expand Down
7 changes: 0 additions & 7 deletions github/resource_github_repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,6 @@ func resourceGithubRepository() *schema.Resource {
Optional: true,
Default: false,
},
"allow_forking": {
Type: schema.TypeBool,
Optional: true,
Default: true,
},
"delete_branch_on_merge": {
Type: schema.TypeBool,
Optional: true,
Expand Down Expand Up @@ -300,7 +295,6 @@ func resourceGithubRepositoryObject(d *schema.ResourceData) *github.Repository {
AllowSquashMerge: github.Bool(d.Get("allow_squash_merge").(bool)),
AllowRebaseMerge: github.Bool(d.Get("allow_rebase_merge").(bool)),
AllowAutoMerge: github.Bool(d.Get("allow_auto_merge").(bool)),
AllowForking: github.Bool(d.Get("allow_forking").(bool)),
DeleteBranchOnMerge: github.Bool(d.Get("delete_branch_on_merge").(bool)),
AutoInit: github.Bool(d.Get("auto_init").(bool)),
LicenseTemplate: github.String(d.Get("license_template").(string)),
Expand Down Expand Up @@ -446,7 +440,6 @@ func resourceGithubRepositoryRead(d *schema.ResourceData, meta interface{}) erro
d.Set("allow_squash_merge", repo.GetAllowSquashMerge())
d.Set("allow_rebase_merge", repo.GetAllowRebaseMerge())
d.Set("allow_auto_merge", repo.GetAllowAutoMerge())
d.Set("allow_forking", repo.GetAllowForking())
d.Set("delete_branch_on_merge", repo.GetDeleteBranchOnMerge())
d.Set("has_downloads", repo.GetHasDownloads())
d.Set("full_name", repo.GetFullName())
Expand Down
5 changes: 0 additions & 5 deletions github/resource_github_repository_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ func TestAccGithubRepositories(t *testing.T) {
allow_squash_merge = false
allow_rebase_merge = false
allow_auto_merge = true
allow_forking = false
auto_init = false
}
Expand All @@ -46,10 +45,6 @@ func TestAccGithubRepositories(t *testing.T) {
"github_repository.test", "allow_auto_merge",
"true",
),
resource.TestCheckResourceAttr(
"github_repository.test", "allow_forking",
"false",
),
)

testCase := func(t *testing.T, mode string) {
Expand Down
2 changes: 0 additions & 2 deletions website/docs/d/repository.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ The following arguments are supported:

* `allow_auto_merge` - Whether the repository allows auto-merging pull requests.

* `allow_forking` - Whether true to allow private forks, or false to prevent private forks.

* `has_downloads` - Whether the repository has Downloads feature enabled.

* `default_branch` - The name of the default branch of the repository.
Expand Down

0 comments on commit 50320f5

Please sign in to comment.