diff --git a/tools/ReleaseNotes/Program.cs b/tools/ReleaseNotes/Program.cs index ca05abf6cc..9597fdf9df 100644 --- a/tools/ReleaseNotes/Program.cs +++ b/tools/ReleaseNotes/Program.cs @@ -112,6 +112,9 @@ namespace ReleaseNotes async Task BuildNotesFromComment(string comment, User user) { + if (comment == null) + return; + async Task CommitNotes(string component, List notes) { Task authTask;