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
You need to interrogate the events for the issue in question looking for Labeled events. I've put together a small LINQPad script below:
var gh = new GitHubClient(new ProductHeaderValue("LinqPad"));
var issueEvents = await gh.Issue.Events.GetAllForIssue("octokit", "octokit.net", 2099);
var latestLabeledEvent = issueEvents.Where(e => e.Event.Value == EventInfoState.Labeled && e.Label.Name.Equals("category: how do i do X?", StringComparison.OrdinalIgnoreCase)).LastOrDefault();
latestLabeledEvent.CreatedAt.Dump();
how to get this information?
The text was updated successfully, but these errors were encountered: