Soenneker.GitHub.Repositories.Issues 4.0.1125

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.GitHub.Repositories.Issues --version 4.0.1125
                    
NuGet\Install-Package Soenneker.GitHub.Repositories.Issues -Version 4.0.1125
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Soenneker.GitHub.Repositories.Issues" Version="4.0.1125" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.GitHub.Repositories.Issues" Version="4.0.1125" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.GitHub.Repositories.Issues" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.GitHub.Repositories.Issues --version 4.0.1125
                    
#r "nuget: Soenneker.GitHub.Repositories.Issues, 4.0.1125"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Soenneker.GitHub.Repositories.Issues@4.0.1125
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.GitHub.Repositories.Issues&version=4.0.1125
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.GitHub.Repositories.Issues&version=4.0.1125
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.1130 64 9/1/2026
4.0.1129 33 9/1/2026
4.0.1128 68 9/1/2026
4.0.1127 50 9/1/2026
4.0.1126 58 8/31/2026
4.0.1125 79 8/31/2026
4.0.1124 40 8/31/2026
4.0.1123 88 8/31/2026
4.0.1122 75 8/31/2026
4.0.1121 85 8/31/2026
4.0.1120 89 8/31/2026
4.0.1119 77 8/30/2026
4.0.1118 189 8/30/2026
4.0.1117 80 8/30/2026
4.0.1116 74 8/30/2026
4.0.1115 139 8/29/2026
4.0.1114 100 8/29/2026
4.0.1113 131 8/28/2026
4.0.1112 135 8/27/2026
4.0.1111 180 8/26/2026
Loading failed

Update dependency Soenneker.GitHub.Repositories to 4.0.1220 (#1647)