Skip to content

Commit b97081a

Browse files
committed
chore: update repository module to require branches to be up to date before merging, removing hardcoded check names
1 parent 36609af commit b97081a

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

terraform/repository/main.tf

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,9 @@ module "repository" {
9090
required_approving_review_count = 1
9191
}
9292

93-
# CI must pass before merge; contexts must match the GitHub Actions job name.
93+
# Require branches to be up to date before merging; no hardcoded check names.
9494
required_status_checks = {
95-
# Branch must be up to date with main before merging.
96-
strict = true
97-
contexts = ["ci"]
95+
strict = true
9896
}
9997
}
10098
}

0 commit comments

Comments
 (0)