Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions infrastructure/github/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,10 @@ resource "github_branch_protection" "main" {
}

required_status_checks {
strict = true
contexts = ["terraform-plan-summary", "lambda-tests", "frontend-ci", "Deployment Summary"]
strict = true
# "Deployment Summary" is intentionally excluded — it only runs on push to main
# (via lambda-deploy.yml) and should never be a required check on PRs.
contexts = ["terraform-plan-summary", "lambda-tests", "frontend-ci"]
}

enforce_admins = false
Expand Down
Loading