From a0a7d2c7e24abdefd9c4868224f0e98ffab52bb9 Mon Sep 17 00:00:00 2001 From: Jonathan Miller <230051081+jmiller-moko@users.noreply.github.com> Date: Tue, 16 Dec 2025 15:32:09 -0600 Subject: [PATCH] Update init.yml --- .github/workflows/init.yml | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/init.yml b/.github/workflows/init.yml index 0023e1c..80f6743 100644 --- a/.github/workflows/init.yml +++ b/.github/workflows/init.yml @@ -1,23 +1,23 @@ - name: Initialize update server repository context - id: init - run: | - set -e + id: init + run: | + set -e - # Canonical repo identifiers - REPO_SLUG="${GITHUB_REPOSITORY}" # owner/repo - REPO_NAME="${GITHUB_REPOSITORY##*/}" # repo - SERVER_URL="${GITHUB_SERVER_URL:-https://github.com}" + # Canonical repo identifiers + REPO_SLUG="${GITHUB_REPOSITORY}" # owner/repo + REPO_NAME="${GITHUB_REPOSITORY##*/}" # repo + SERVER_URL="${GITHUB_SERVER_URL:-https://github.com}" - # Update server XML source repository URL - UPDATE_XML_REPO_URL="${SERVER_URL}/${REPO_SLUG}" + # Update server XML source repository URL + UPDATE_XML_REPO_URL="${SERVER_URL}/${REPO_SLUG}" - echo "Resolved repository slug: ${REPO_SLUG}" - echo "Resolved repository name: ${REPO_NAME}" - echo "Resolved update XML repo URL: ${UPDATE_XML_REPO_URL}" + echo "Resolved repository slug: ${REPO_SLUG}" + echo "Resolved repository name: ${REPO_NAME}" + echo "Resolved update XML repo URL: ${UPDATE_XML_REPO_URL}" - # Export for downstream steps - { - echo "repo_slug=${REPO_SLUG}" - echo "repo_name=${REPO_NAME}" - echo "update_xml_repo_url=${UPDATE_XML_REPO_URL}" - } >> "$GITHUB_OUTPUT" + # Export for downstream steps + { + echo "repo_slug=${REPO_SLUG}" + echo "repo_name=${REPO_NAME}" + echo "update_xml_repo_url=${UPDATE_XML_REPO_URL}" + } >> "$GITHUB_OUTPUT"