summaryrefslogtreecommitdiffhomepage
path: root/script/sync-zed.ts
diff options
context:
space:
mode:
authorAiden Cline <[email protected]>2025-11-09 13:05:51 -0600
committerAiden Cline <[email protected]>2025-11-09 13:05:51 -0600
commit9f771ef0ae9fca76f2f10b4b641395c7962787b8 (patch)
treeb0fc3a953ec0667abfd166f9cf6753415c4489f0 /script/sync-zed.ts
parent356715f67d83fe60a55e9464757cd5a58531f2b2 (diff)
downloadopencode-9f771ef0ae9fca76f2f10b4b641395c7962787b8.tar.gz
opencode-9f771ef0ae9fca76f2f10b4b641395c7962787b8.zip
ci: fix
Diffstat (limited to 'script/sync-zed.ts')
-rwxr-xr-xscript/sync-zed.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/script/sync-zed.ts b/script/sync-zed.ts
index ba367a9a0..be2c4a465 100755
--- a/script/sync-zed.ts
+++ b/script/sync-zed.ts
@@ -39,6 +39,10 @@ async function main() {
await $`git clone https://x-access-token:${token}@github.com/${FORK_REPO}.git ${workDir}`
process.chdir(workDir)
+ // Configure git identity
+ await $`git config user.name "github-actions[bot]"`
+ await $`git config user.email "github-actions[bot]@users.noreply.github.com"`
+
// Sync fork with upstream
console.log(`🔄 Syncing fork with upstream...`)
await $`git remote add upstream https://github.com/${UPSTREAM_REPO}.git`