From 9cccd5196df3da40ed8934851fe710f46e8ef578 Mon Sep 17 00:00:00 2001 From: S Date: Sun, 1 Mar 2026 10:05:45 -0500 Subject: [PATCH] refactor: use REPO_NAMES in phase5_migrate_pipelines.sh Co-Authored-By: Claude Opus 4.6 --- phase5_migrate_pipelines.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phase5_migrate_pipelines.sh b/phase5_migrate_pipelines.sh index 47e6d28..5052e06 100755 --- a/phase5_migrate_pipelines.sh +++ b/phase5_migrate_pipelines.sh @@ -19,11 +19,11 @@ source "${SCRIPT_DIR}/lib/common.sh" load_env require_vars GITEA_ADMIN_TOKEN GITEA_INTERNAL_URL GITEA_ORG_NAME \ GITEA_ADMIN_USER GITEA_ADMIN_PASSWORD \ - REPO_1_NAME REPO_2_NAME REPO_3_NAME + REPO_NAMES phase_header 5 "Migrate Pipelines (GitHub → Gitea Actions)" -REPOS=("$REPO_1_NAME" "$REPO_2_NAME" "$REPO_3_NAME") +read -ra REPOS <<< "$REPO_NAMES" TEMP_BASE="/tmp/gitea-migration" MIGRATION_HEADER="# Migrated from GitHub Actions — review for Gitea compatibility" GITEA_BASE_URL="${GITEA_INTERNAL_URL%/}"