From 7de57717249a4d3a24c18dcc3cf6e8769c55ed41 Mon Sep 17 00:00:00 2001 From: Tom Beckenham <34339192+tombeckenham@users.noreply.github.com> Date: Tue, 4 Aug 2026 10:12:35 +1000 Subject: [PATCH] chore(ci): remove changeset version preview job The shared changeset-preview action reads every pending changeset in .changeset/ rather than just the PR's delta, so with ~50 unreleased changesets accumulated the comment misattributes the whole backlog (including bogus 1.0.0 major bumps) to every PR. Co-Authored-By: Claude Fable 5 --- .github/workflows/pr.yml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index e99da45128..a83eb33a81 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -48,18 +48,3 @@ jobs: run: pnpm run build:all - name: Publish Previews run: pnpx pkg-pr-new publish --pnpm './packages/*' - version-preview: - name: Version Preview - runs-on: ubuntu-latest - permissions: - contents: read - pull-requests: write - steps: - - name: Checkout - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - with: - persist-credentials: false - - name: Setup Tools - uses: TanStack/config/.github/setup@190f659075ff0845850e330883eb26d7ffd0671f # main - - name: Changeset Preview - uses: TanStack/config/.github/changeset-preview@190f659075ff0845850e330883eb26d7ffd0671f # main