From aa25e30701b555c419cfbe29fff42e47c6ab9b14 Mon Sep 17 00:00:00 2001 From: HiranoMasaaki Date: Sat, 10 Jan 2026 01:29:21 +0900 Subject: [PATCH] fix(ci): allow changeset-check to run on release PRs Remove changeset-release/ branch skip condition so CI runs on release PRs. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3009d093..b610a1cb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -236,7 +236,7 @@ jobs: changeset-check: name: Changeset Check runs-on: ubuntu-24.04 - if: github.event_name == 'pull_request' && github.event.pull_request.draft == false && !startsWith(github.head_ref, 'dependabot/') && !startsWith(github.head_ref, 'changeset-release/') + if: github.event_name == 'pull_request' && github.event.pull_request.draft == false && !startsWith(github.head_ref, 'dependabot/') steps: - name: Checkout uses: actions/checkout@v4