From b25f70b3fce3aa9bcf8cf72af51732b5d077b3d4 Mon Sep 17 00:00:00 2001 From: Seungwoo321 Date: Tue, 5 Aug 2025 22:10:30 +0900 Subject: [PATCH] fix: always sync branches regardless of beta versions - Remove job-level condition that skipped sync when no beta versions - Move beta check to version update step only - Ensure main changes are always synced to develop/staging - Fixes issue where workflow changes weren't synced --- .github/workflows/update-version.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-version.yml b/.github/workflows/update-version.yml index 7c46080..5f31786 100644 --- a/.github/workflows/update-version.yml +++ b/.github/workflows/update-version.yml @@ -55,7 +55,6 @@ jobs: update-versions: name: Update Versions and Sync needs: check-versions - if: needs.check-versions.outputs.has_beta == 'true' runs-on: ubuntu-latest permissions: contents: write @@ -86,6 +85,7 @@ jobs: git config user.email "github-actions[bot]@users.noreply.github.com" - name: Update versions + if: needs.check-versions.outputs.has_beta == 'true' id: version-update run: | echo "📝 Updating package versions..."