From 33ba1e8267b33cf0f0342a25051a0b5e34138766 Mon Sep 17 00:00:00 2001 From: Oved Ourfali Date: Thu, 4 Jun 2026 08:13:41 -0400 Subject: [PATCH] Enable GitHub Pages for the osac-workspace repository The osac-workspace repository has a GitHub Actions workflow that publishes a PR dashboard to GitHub Pages. However, Pages was only enabled manually in the repository settings, so it gets disabled every time Terraform is re-applied. This adds the pages configuration with build_type = "workflow" to persist the setting through Terraform applies. Assisted-by: Claude Code Co-Authored-By: Claude Opus 4.6 (1M context) Signed-off-by: Oved Ourfali --- repositories.tf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/repositories.tf b/repositories.tf index d59abe0..a999a93 100644 --- a/repositories.tf +++ b/repositories.tf @@ -280,4 +280,7 @@ module "repo_osac_workspace" { permission = "admin" } ] + pages = { + build_type = "workflow" + } }