From bca6e6434eef904c1fb4cf63f5cef43dffc4e368 Mon Sep 17 00:00:00 2001 From: Shivam Kumar Date: Wed, 24 Jun 2026 20:56:55 +0530 Subject: [PATCH 1/3] SCAL-320447 Fix the failing pipeline for the sdk --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7608252e..c4d9b795 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -37,10 +37,10 @@ jobs: - name: Verify generated documentation is committed run: | # Ensure we have the latest main branch reference locally to compare against - git fetch origin main:main + git fetch origin main:main-test # Check if package.json version changed compared to main branch - if git diff main package.json | grep -q '"version"'; then + if git diff main-test package.json | grep -q '"version"'; then echo "Package version was updated" # Regenerate documentation to verify it's current From 08fd88dff2dc255b84ceb33af665349b701f2f40 Mon Sep 17 00:00:00 2001 From: Shivam Kumar Date: Wed, 24 Jun 2026 23:19:15 +0530 Subject: [PATCH 2/3] SCAL-320447 Fix the failing pipeline for the sdk --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c4d9b795..2fa3e8ce 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -37,10 +37,10 @@ jobs: - name: Verify generated documentation is committed run: | # Ensure we have the latest main branch reference locally to compare against - git fetch origin main:main-test + git fetch origin main # Check if package.json version changed compared to main branch - if git diff main-test package.json | grep -q '"version"'; then + if git diff origin/main package.json | grep -q '"version"'; then echo "Package version was updated" # Regenerate documentation to verify it's current From 0217801fb4472059017b21c4724fd72cde559743 Mon Sep 17 00:00:00 2001 From: Shivam Kumar Date: Wed, 24 Jun 2026 23:21:24 +0530 Subject: [PATCH 3/3] SCAL-320447 Fix the failing pipeline for the sdk --- .github/workflows/bumpVersion.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bumpVersion.yml b/.github/workflows/bumpVersion.yml index f5848abf..22be1b38 100644 --- a/.github/workflows/bumpVersion.yml +++ b/.github/workflows/bumpVersion.yml @@ -50,8 +50,8 @@ jobs: echo "new_version=$NEW_VERSION" >> "$GITHUB_OUTPUT" echo "Branch will be $NEW_VERSION" - - name: Install (lockfile refresh if needed) - run: npm install --package-lock-only + - name: Install dependencies + run: npm install --legacy-peer-deps - name: Generate documentation run: npm run docgen