From 79e7a4458783f28207a0897b66572704d474249f Mon Sep 17 00:00:00 2001 From: Sampson Date: Fri, 31 Jul 2026 08:38:40 -0500 Subject: [PATCH] test(agent-core-v2): disables commit.gpgsign Unless commit.gpgsign is disabled for these test operations, the host machine may be unnecessarily interrupted with prompts to provide a secret key. --- packages/agent-core-v2/test/app/git/gitService.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/agent-core-v2/test/app/git/gitService.test.ts b/packages/agent-core-v2/test/app/git/gitService.test.ts index 39432cebba..34d3642a90 100644 --- a/packages/agent-core-v2/test/app/git/gitService.test.ts +++ b/packages/agent-core-v2/test/app/git/gitService.test.ts @@ -38,6 +38,7 @@ describe('GitService', () => { git(repo, 'init'); git(repo, 'config', 'user.email', 'test@example.com'); git(repo, 'config', 'user.name', 'Test'); + git(repo, 'config', 'commit.gpgsign', 'false'); disposables = new DisposableStore(); ix = createServices(disposables, { additionalServices: (reg) => {