Soenneker.GitHub.Repositories.Issues
4.0.1131
Prefix Reserved
See the version list below for details.
dotnet add package Soenneker.GitHub.Repositories.Issues --version 4.0.1131
NuGet\Install-Package Soenneker.GitHub.Repositories.Issues -Version 4.0.1131
<PackageReference Include="Soenneker.GitHub.Repositories.Issues" Version="4.0.1131" />
<PackageVersion Include="Soenneker.GitHub.Repositories.Issues" Version="4.0.1131" />
<PackageReference Include="Soenneker.GitHub.Repositories.Issues" />
paket add Soenneker.GitHub.Repositories.Issues --version 4.0.1131
#r "nuget: Soenneker.GitHub.Repositories.Issues, 4.0.1131"
#:package Soenneker.GitHub.Repositories.Issues@4.0.1131
#addin nuget:?package=Soenneker.GitHub.Repositories.Issues&version=4.0.1131
#tool nuget:?package=Soenneker.GitHub.Repositories.Issues&version=4.0.1131
Soenneker.GitHub.Repositories.Issues
Retrieves and logs open GitHub issues for one repository or every repository owned by a user or organization.
Installation
dotnet add package Soenneker.GitHub.Repositories.Issues
Configure and register
{
"GH": {
"Token": "your-github-token"
}
}
using Soenneker.GitHub.Repositories.Issues.Registrars;
services.AddGitHubRepositoriesIssuesUtilAsSingleton();
Retrieve issues
List<Issue> issues = await issueUtil.GetAll(
"example-org",
"example-repository",
includeDependencyIssues: false,
cancellationToken);
GetAll() follows all pages of open results. GitHub's endpoint also returns pull requests; this package removes entries containing pull-request metadata. When includeDependencyIssues is false, titles containing Update dependency are excluded case-insensitively.
List<Issue>? ownerIssues = await issueUtil.GetAllForOwner(
"example-org",
startAt: DateTime.UtcNow.AddMonths(-3),
cancellationToken: cancellationToken);
Owner-wide retrieval first enumerates repositories within the optional creation-date window, then queries them sequentially. It returns null when no matching repository has an issue and a populated list otherwise.
LogAll() and LogAllForOwner() apply the same filtering and write each issue title and update time through ILogger.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Soenneker.GitHub.Repositories (>= 4.0.1227)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Soenneker.GitHub.Repositories.Issues:
| Package | Downloads |
|---|---|
|
Soenneker.GitHub.Repositories.Suite
Registers commonly used Soenneker GitHub repository services through one package |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 4.0.1145 | 0 | 9/4/2026 |
| 4.0.1144 | 0 | 9/4/2026 |
| 4.0.1143 | 0 | 9/4/2026 |
| 4.0.1142 | 0 | 9/4/2026 |
| 4.0.1141 | 0 | 9/4/2026 |
| 4.0.1140 | 0 | 9/4/2026 |
| 4.0.1139 | 0 | 9/4/2026 |
| 4.0.1138 | 0 | 9/4/2026 |
| 4.0.1135 | 0 | 9/4/2026 |
| 4.0.1134 | 0 | 9/3/2026 |
| 4.0.1133 | 0 | 9/3/2026 |
| 4.0.1132 | 31 | 9/3/2026 |
| 4.0.1131 | 37 | 9/3/2026 |
| 4.0.1130 | 140 | 9/1/2026 |
| 4.0.1129 | 38 | 9/1/2026 |
| 4.0.1128 | 87 | 9/1/2026 |
| 4.0.1127 | 54 | 9/1/2026 |
| 4.0.1126 | 67 | 8/31/2026 |
| 4.0.1125 | 111 | 8/31/2026 |
| 4.0.1124 | 44 | 8/31/2026 |
Update dependency Soenneker.GitHub.Repositories to 4.0.1227 (#1657)