From b5c254ca8b5f25b61450fe29f1a44e3c13dc9e44 Mon Sep 17 00:00:00 2001 From: Jonas Israel Date: Wed, 13 May 2026 16:54:32 +0200 Subject: [PATCH] chore: Remove repo name --- .github/workflows/weekly-spec-update.yaml | 3 ++- docs/adrs/005-release-strategy.md | 7 +++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/weekly-spec-update.yaml b/.github/workflows/weekly-spec-update.yaml index b458f2a58..8e8db5641 100644 --- a/.github/workflows/weekly-spec-update.yaml +++ b/.github/workflows/weekly-spec-update.yaml @@ -27,7 +27,7 @@ jobs: - name: 'Get orchestration version' if: matrix.service == 'orchestration' run: | - ORCH_VERSION=$(curl --silent --request GET --url "https://github.tools.sap/api/v3/repos/MLF-prod/mlf-gitops-prod/contents/services/llm-orchestration/source/Chart.yaml?ref=aws.eu-central-1.prod-eu/current" -H "Authorization: Bearer $TOKEN" -H "Accept: application/vnd.github.v3.raw" | grep 'version:' | awk '{print $2}') + ORCH_VERSION=$(curl --silent --request GET --url "$ORCH_GITOPS_LINK" -H "Authorization: Bearer $TOKEN" -H "Accept: application/vnd.github.v3.raw" | grep 'version:' | awk '{print $2}') if [ -z "$ORCH_VERSION" ]; then echo "Failed to fetch orchestration version" @@ -37,6 +37,7 @@ jobs: echo "ORCH_VERSION=$ORCH_VERSION" >> $GITHUB_ENV env: TOKEN: ${{ secrets.GH_TOOLS_TOKEN }} + ORCH_GITOPS_LINK: ${{ secrets.ORCH_GITOPS_LINK }} - name: 'Trigger spec update' run: | diff --git a/docs/adrs/005-release-strategy.md b/docs/adrs/005-release-strategy.md index db91c3137..0161a1c0b 100644 --- a/docs/adrs/005-release-strategy.md +++ b/docs/adrs/005-release-strategy.md @@ -94,8 +94,7 @@ In case of delays in the release process of AI Core: 2. The AI SDK release is delayed equally 3. The AI SDK is released anyway with exceptional PO approval -## Further Links +## Further Remarks -- The single source of truth for all landscapes is in [mlf-gitops](https://github.tools.sap/MLF-prod/mlf-gitops-prod) - - In particular, we care about the [version of orchestration](https://github.tools.sap/MLF-prod/mlf-gitops-prod/blob/aws.eu-central-1.prod-eu/current/services/llm-orchestration/source/Chart.yaml) -- [This JIRA ticket](https://jira.tools.sap/browse/AI-44024) tracks releases +- The single source of truth for all landscapes, including the version of orchestration, is in the internal mlf operations repo. + - This is handled by the weekly spec update workflow, so it should not be necessary to check this manually.