From dae2b5fff2e7b8ebf9301f5ab33a5e807d4f2f8c Mon Sep 17 00:00:00 2001 From: Garrett Heel Date: Thu, 25 Aug 2022 10:27:26 -0400 Subject: [PATCH] remove duplicate auto merge set --- github/data_source_github_repository.go | 1 - 1 file changed, 1 deletion(-) diff --git a/github/data_source_github_repository.go b/github/data_source_github_repository.go index a5957439d1..a651eda8d9 100644 --- a/github/data_source_github_repository.go +++ b/github/data_source_github_repository.go @@ -250,7 +250,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_auto_merge", repo.GetAllowAutoMerge()) d.Set("squash_merge_commit_title", repo.GetSquashMergeCommitTitle()) d.Set("squash_merge_commit_message", repo.GetSquashMergeCommitMessage()) d.Set("merge_commit_title", repo.GetMergeCommitTitle())