From 6b5a0fb261af36d97fb39f12480ea9d8da5eb7a5 Mon Sep 17 00:00:00 2001 From: Aiden Cline Date: Mon, 29 Dec 2025 18:16:09 -0600 Subject: ci: update token var --- script/sync-zed.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'script') diff --git a/script/sync-zed.ts b/script/sync-zed.ts index 3754fb5ba..151bfe23c 100755 --- a/script/sync-zed.ts +++ b/script/sync-zed.ts @@ -15,6 +15,9 @@ async function main() { const token = process.env.ZED_EXTENSIONS_PAT if (!token) throw new Error("ZED_EXTENSIONS_PAT environment variable required") + const prToken = process.env.ZED_PR_PAT + if (!prToken) throw new Error("ZED_PR_PAT environment variable required") + const cleanVersion = version.replace(/^v/, "") console.log(`📦 Syncing Zed extension for version ${cleanVersion}`) @@ -108,7 +111,7 @@ async function main() { console.log(`📬 Creating pull request...`) const prResult = await $`gh pr create --repo ${UPSTREAM_REPO} --base main --head ${FORK_REPO.split("/")[0]}:${branchName} --title "Update ${EXTENSION_NAME} to v${cleanVersion}" --body "Updating OpenCode extension to v${cleanVersion}"` - .env({ ...process.env, GH_TOKEN: token }) + .env({ ...process.env, GH_TOKEN: prToken }) .nothrow() if (prResult.exitCode !== 0) { -- cgit v1.2.3