From ff61bc9c1775ea1b7481ed42a21813971bb95487 Mon Sep 17 00:00:00 2001 From: Heath Stewart Date: Fri, 25 Aug 2023 17:54:43 -0700 Subject: [PATCH] Disable GPG signing on commit 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))