We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d98568f commit aa16610Copy full SHA for aa16610
1 file changed
script/sync-zed.ts
@@ -108,7 +108,7 @@ async function main() {
108
console.log(`📬 Creating pull request...`)
109
const prResult =
110
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}"`
111
- .env({ GH_TOKEN: token })
+ .env({ ...process.env, GH_TOKEN: token })
112
.nothrow()
113
114
if (prResult.exitCode !== 0) {
0 commit comments