From 095aeba0a77482f3061e623c7d91c29da76f195e Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Tue, 7 Apr 2026 16:26:01 -0400 Subject: test: disable GPG signing in test fixtures (#20386) --- packages/app/e2e/actions.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'packages/app') diff --git a/packages/app/e2e/actions.ts b/packages/app/e2e/actions.ts index b1c38afee..ac9439360 100644 --- a/packages/app/e2e/actions.ts +++ b/packages/app/e2e/actions.ts @@ -320,6 +320,7 @@ export async function createTestProject(input?: { serverUrl?: string }) { execSync("git init", { cwd: root, stdio: "ignore" }) await fs.writeFile(path.join(root, ".git", "opencode"), id) execSync("git config core.fsmonitor false", { cwd: root, stdio: "ignore" }) + execSync("git config commit.gpgsign false", { cwd: root, stdio: "ignore" }) execSync("git add -A", { cwd: root, stdio: "ignore" }) execSync('git -c user.name="e2e" -c user.email="e2e@example.com" commit -m "init" --allow-empty', { cwd: root, -- cgit v1.2.3