From f2920ea2c103bcaa29897c251c23c25df9d6eba0 Mon Sep 17 00:00:00 2001 From: Fabio Gartenmann <137318798+artiphishle@users.noreply.github.com> Date: Thu, 6 Aug 2026 02:42:35 +0200 Subject: [PATCH] fix(ci): skip changeset status on release PRs --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f50df8f..16723fd0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,7 +79,9 @@ jobs: fi - name: Check changesets - if: github.event_name == 'pull_request' + if: > + github.event_name == 'pull_request' && + !startsWith(github.head_ref, 'changeset-release/') run: | if node -e "const p=require('./package.json'); process.exit(p.scripts?.['changeset:status'] ? 0 : 1)"; then bun run changeset:status