From 60b82b5021cd7bd58251ce1e775e8d1c3d95297f Mon Sep 17 00:00:00 2001 From: Aleksandr Pasevin Date: Fri, 20 Feb 2026 00:15:55 +0200 Subject: [PATCH] fix(ci): skip version check on changeset-release prs The check-versions and update-versions workflows race on changeset-release PRs. update-versions already auto-commits the corrected versions.ts, making the check redundant and causing spurious failures. --- .github/workflows/check-versions.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/check-versions.yml b/.github/workflows/check-versions.yml index 1e8c570e..fe3e294b 100644 --- a/.github/workflows/check-versions.yml +++ b/.github/workflows/check-versions.yml @@ -15,6 +15,7 @@ permissions: jobs: check-versions: + if: ${{ !startsWith(github.head_ref, 'changeset-release/') }} runs-on: ubuntu-latest permissions: contents: read