Skip to content

Commit b863a98

Browse files
committed
Set commit title and messages explicitly.
This may help calm the flapping from the terraform plan.
1 parent ff36ad4 commit b863a98

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

terraform/resources-repos.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,12 @@ resource "github_repository" "this" {
1010

1111
allow_auto_merge = each.value.allow_auto_merge
1212
allow_merge_commit = each.value.allow_merge_commit
13+
merge_commit_title = "MERGE_MESSAGE"
14+
merge_commit_message = "PR_BODY"
1315
allow_rebase_merge = each.value.allow_rebase_merge
1416
allow_squash_merge = each.value.allow_squash_merge
17+
squash_merge_commit_title = "COMMIT_OR_PR_TITLE"
18+
squash_merge_commit_message = "COMMIT_MESSAGES"
1519
allow_update_branch = each.value.allow_update_branch
1620
archive_on_destroy = true
1721
delete_branch_on_merge = each.value.delete_branch_on_merge

0 commit comments

Comments
 (0)