From 3e1d2ac949127539f35737813630144c2c66e5b2 Mon Sep 17 00:00:00 2001 From: Marcus Pasell <3690498+rickyrombo@users.noreply.github.com> Date: Tue, 17 Mar 2026 18:17:52 -0700 Subject: [PATCH] fix(ci): run SDK CI on changeset release branch Bot-created PRs (via GITHUB_TOKEN) don't trigger pull_request events, so SDK CI never ran on the changeset version packages branch. Adding changeset-release/** to the push branches filter fixes this. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/sdk.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/sdk.yml b/.github/workflows/sdk.yml index a275f75bca5..7a51d907b44 100644 --- a/.github/workflows/sdk.yml +++ b/.github/workflows/sdk.yml @@ -4,6 +4,7 @@ on: push: branches: - main + - changeset-release/** paths: - 'packages/sdk/**' - 'packages/eth/**'