From 7e613f70f274fa30ac85d1d24858e0b8ab84aeb4 Mon Sep 17 00:00:00 2001 From: Heath Stewart Date: Mon, 28 Aug 2023 09:34:47 -0700 Subject: [PATCH] Disable GPG signing on commit (#6862) Fixes #6861 --- tools/test-proxy/Azure.Sdk.Tools.TestProxy/Store/GitStore.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test-proxy/Azure.Sdk.Tools.TestProxy/Store/GitStore.cs b/tools/test-proxy/Azure.Sdk.Tools.TestProxy/Store/GitStore.cs index e2ea8b5f488..a94dfde87f4 100644 --- a/tools/test-proxy/Azure.Sdk.Tools.TestProxy/Store/GitStore.cs +++ b/tools/test-proxy/Azure.Sdk.Tools.TestProxy/Store/GitStore.cs @@ -127,7 +127,7 @@ public async Task Push(string pathToAssetsJson) { GitHandler.Run($"branch {branchGuid}", config); GitHandler.Run($"checkout {branchGuid}", config); GitHandler.Run($"add -A .", config); - GitHandler.Run($"-c user.name=\"{gitUserName}\" -c user.email=\"{gitUserEmail}\" commit -m \"Automatic asset update from test-proxy.\"", config); + GitHandler.Run($"-c user.name=\"{gitUserName}\" -c user.email=\"{gitUserEmail}\" commit --no-gpg-sign -m \"Automatic asset update from test-proxy.\"", config); // Get the first 10 digits of the commit SHA. The generatedTagName will be the // config.TagPrefix_ if (GitHandler.TryRun("rev-parse --short=10 HEAD", config.AssetsRepoLocation.ToString(), out CommandResult SHAResult))