From 52049eb14b1d19530ff491c58ff69c3cfcca811c Mon Sep 17 00:00:00 2001 From: Nate Moore Date: Tue, 1 Sep 2026 16:40:16 -0400 Subject: [PATCH] fix(ci): use git CLI for changeset version PR push The GitHub API's createTree endpoint doesn't support submodule entries (mode 160000), so the `clay` gitlink causes `changesets/action` to fail when creating the "Version Packages" PR branch. Setting `push-with-git-cli: true` bypasses the API and uses native git push. --- .github/workflows/publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6edf205..113b86c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -53,5 +53,6 @@ jobs: commit-message: "chore: version packages" pr-title: "chore: version packages" create-github-releases: false + push-with-git-cli: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}