From 967172e316a0d492a03585b41cf66b5ecad6ca59 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Fri, 14 Jul 2023 16:15:25 -0400 Subject: [PATCH] Fix ReleaseNotes posting comment when debugging --- tools/ReleaseNotes/Program.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/ReleaseNotes/Program.cs b/tools/ReleaseNotes/Program.cs index b0d5773b84..43c9f407bf 100644 --- a/tools/ReleaseNotes/Program.cs +++ b/tools/ReleaseNotes/Program.cs @@ -437,7 +437,8 @@ namespace ReleaseNotes }) .Compile(); - await connection.Run(mutation); + if (!doNotCloseMilestone) + await connection.Run(mutation); return 0; }