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
$"{SpectreEmoji.Known.ExclamationQuestionMark} Requesting all [italic dim]pull requests[/] from the [bold aqua]{owner}/{name}[/] for the past year...");
35
+
ctx.Spinner=newTimeTravelSpinner();
36
+
37
+
// Get all issues for a repository, for the past year.
38
+
varissues=awaitclient.Issue.GetAllForRepository(
39
+
owner,name,newRepositoryIssueRequest
40
+
{
41
+
Since=DateTimeOffset.Now.AddYears(-1),
42
+
State=ItemStateFilter.All
43
+
});
44
+
45
+
staticstringLabelNameSelector(Labellabel)
46
+
{
47
+
returnlabel.Name;
48
+
}
49
+
50
+
AnsiConsole.MarkupLine(
51
+
$"{SpectreEmoji.Known.Label} Requesting all [italic dim]labels[/] from the [bold aqua]{owner}/{name}[/] repo...");
52
+
ctx.Spinner=Spinner.Known.Monkey;
53
+
54
+
// Get all the labels from the returned issues, as a distinct set.
0 commit comments