Soenneker.GitHub.Repositories 4.0.1296

Prefix Reserved
dotnet add package Soenneker.GitHub.Repositories --version 4.0.1296
                    
NuGet\Install-Package Soenneker.GitHub.Repositories -Version 4.0.1296
                    
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" Version="4.0.1296" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.GitHub.Repositories" Version="4.0.1296" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.GitHub.Repositories" />
                    
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 --version 4.0.1296
                    
#r "nuget: Soenneker.GitHub.Repositories, 4.0.1296"
                    
#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@4.0.1296
                    
#: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&version=4.0.1296
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.GitHub.Repositories&version=4.0.1296
                    
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

Creates, discovers, configures, and deletes GitHub repositories through the REST and GraphQL APIs.

Installation

dotnet add package Soenneker.GitHub.Repositories

Configure and register

{
  "GH": {
    "Token": "your-github-token"
  }
}
using Soenneker.GitHub.Repositories.Registrars;

services.AddGitHubRepositoriesUtilAsSingleton();

The token's repository and organization permissions determine which operations succeed. Creation, settings changes, sponsorship changes, and deletion require write or administration permissions appropriate to the target.

Discover repositories

FullRepository? repository = await repositories.GetByName(
    "example-org", "example-repository", cancellationToken);

List<MinimalRepository> recent = await repositories.GetAllForOwner(
    "example-org",
    startAt: DateTimeOffset.UtcNow.AddMonths(-1),
    cancellationToken: cancellationToken);

GetByName() returns null only for GitHub's 404 response. Authentication, permission, rate-limit, and transport failures propagate. GetAllForOwnerIncrementally() yields pages as they arrive and applies the optional creation-date window.

Create and configure

FullRepository created = await repositories.CreateForOrg(
    org: "example-org",
    name: "example-repository",
    description: "Example service",
    isPrivate: true,
    allowSquashMerge: true,
    cancellationToken: cancellationToken);

await repositories.ReplaceTopics(
    "example-org", "example-repository",
    ["dotnet", "service"],
    cancellationToken);

ReplaceTopics() replaces the entire topic collection; passing an empty list clears it. CreateUnique() probes the base name and numeric suffixes, then creates the first name reported as absent. A concurrent creator can still win that race and cause GitHub to reject the request.

Mutating operations

ToggleAutoMergeOnAllRepos() attempts every repository and throws an AggregateException afterward if any updates failed, so partial completion is visible. ToggleSponsorships() uses GitHub's GraphQL mutation over the same authenticated HTTP transport.

DeleteIfExists() permanently deletes the repository when GitHub confirms it exists. It does not treat access failures as absence; verify the owner and repository before calling it.

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 (5)

Showing the top 5 NuGet packages that depend on Soenneker.GitHub.Repositories:

Package Downloads
Soenneker.GitHub.Repositories.Discussions

Creates, lists, and deletes GitHub repository discussions.

Soenneker.GitHub.Artifacts

Lists and deletes GitHub Actions artifacts across repositories.

Soenneker.GitHub.Repositories.Runs

Inspects GitHub check runs, commit statuses, and Actions workflow runs

Soenneker.GitHub.Repositories.Issues

Retrieves and logs open GitHub issues for repositories and owners.

Soenneker.GitHub.Repositories.Security

Retrieves and logs GitHub repository security alerts

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.1296 0 9/17/2026
4.0.1295 0 9/17/2026
4.0.1294 0 9/16/2026
4.0.1292 0 9/16/2026
4.0.1291 0 9/16/2026
4.0.1290 0 9/16/2026
4.0.1289 39 9/16/2026
4.0.1288 50 9/16/2026
4.0.1287 76 9/15/2026
4.0.1286 39 9/15/2026
4.0.1285 302 9/13/2026
4.0.1284 92 9/13/2026
4.0.1283 55 9/13/2026
4.0.1282 66 9/13/2026
4.0.1281 113 9/13/2026
4.0.1280 75 9/13/2026
4.0.1279 99 9/13/2026
4.0.1278 151 9/13/2026
4.0.1277 120 9/13/2026
4.0.1276 145 9/12/2026
Loading failed

Updated Soenneker.GitHub.ClientUtil to 4.0.685