Sync upstream v0.21.0 + fix sync-upstream workflow - #10
Merged
Merged
Conversation
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
…#202) * feat: upgrade tanstack store versions with useSelector hook * changeset
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
gh CLI inside a fork checkout defaults its base repo to the parent (TanStack/pacer). That meant gh pr create was trying to open the PR against upstream where GITHUB_TOKEN has no access, failing with: pull request create failed: GraphQL: Resource not accessible by integration (createPullRequest) The branch was already pushed by then, leaving it stranded without a PR. The gh pr list check earlier in the workflow had the same bug silently — it was querying the parent, not the fork. Setting GH_REPO on both steps forces gh to target the fork.
dogmar
force-pushed
the
claude/fix-merge-push-S0fV8
branch
from
April 22, 2026 04:13
067d04c to
6fabe7d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Manually recovers the v0.21.0 upstream sync (previously stranded as the orphan
sync/v0.21.0-20260420branch with no PR) and fixes the sync-upstream workflow bug that caused the orphan state.Root cause
From the 20260420 run log:
ghCLI inside a fork checkout defaults its "base repo" to the parent (TanStack/pacer).gh pr createwas trying to open the PR against upstream whereGITHUB_TOKENhas no write access → 403. The branch was already pushed at that point, leaving it stranded without a PR.gh pr listearlier in the workflow had the same bug silently — always querying the wrong repo.Changes
.github/workflows/sync-upstream.yml— addGH_REPO: ${{ github.repository }}to theCheck for existing PRandCreate PRsteps soghtargets the fork. 5 lines.upstream/main(8428657) — recovers the v0.21.0 release:After merging
sync/v0.21.0-20260417andsync/v0.21.0-20260420orphan branches can be deleted — their content is already in this PR.https://claude.ai/code/session_01XftXTi67nbf71Y9wNZ833A