From ae8086f38b5d8746dba51e889b5d0a0b3272a0d8 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 6 May 2026 18:27:30 +0000 Subject: [PATCH] ci-health-check.sh: append infra as private repo after dynamic discovery Adds 'infra' to PLUGIN_REPOS after the discovery/fallback logic so the private infra repo is always included in CI/CD health checks regardless of which path populated PLUGIN_REPOS. Fixes: PRI-906 Fixes: PRI-488 Co-Authored-By: Paperclip --- .github/scripts/ci-health-check.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/scripts/ci-health-check.sh b/.github/scripts/ci-health-check.sh index 988b8fc..bdc9a17 100755 --- a/.github/scripts/ci-health-check.sh +++ b/.github/scripts/ci-health-check.sh @@ -44,6 +44,9 @@ if [ ${#PLUGIN_REPOS[@]} -eq 0 ]; then PLUGIN_REPOS=("${PLUGIN_REPOS_FALLBACK[@]}") fi +# Private repos not visible to dynamic discovery +PLUGIN_REPOS+=("infra") + echo "=== CI/CD Health Check — $(date -u '+%Y-%m-%d %H:%M UTC') ===" echo ""