You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
varlogMessage=string.Format(CultureInfo.CurrentCulture,"No closed issues have been found for milestone {0}, or all assigned issues are meant to be excluded from release notes, aborting release creation.",_milestoneTitle);
64
64
thrownewInvalidOperationException(logMessage);
65
65
}
66
66
67
+
// By default we use the custom template, if it was provided.
68
+
// Otherwise, we determine which template we should use.
varresult=awaitreleaseNotesBuilder.BuildReleaseNotesAsync("GitTools","GitReleaseManager","0.12.0",string.Empty).ConfigureAwait(false);// 0.12.0 contains a mix of issues and PRs
83
+
Debug.WriteLine(result);
84
+
ClipBoardHelper.SetClipboard(result);
85
+
}
86
+
}
87
+
88
+
[Test]
89
+
[Explicit]
90
+
publicasyncTaskMilestoneWithoutIssues()
91
+
{
92
+
if(string.IsNullOrWhiteSpace(_token))
93
+
{
94
+
Assert.Inconclusive("Unable to locate credentials for accessing GitHub API");
varresult=awaitreleaseNotesBuilder.BuildReleaseNotesAsync("GitTools","GitReleaseManager","0.12.0",templatePath).ConfigureAwait(false);// 0.12.0 contains a mix of issues and PRs
108
+
varresult=awaitreleaseNotesBuilder.BuildReleaseNotesAsync("jericho","_testing","0.1.0",string.Empty).ConfigureAwait(false);// There are no issues associated with milestone 0.1.0 in my testing repo.
0 commit comments