Soenneker.GitHub.Repositories.Secrets 4.0.1127

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

alternate text is missing from this package README image Soenneker.GitHub.Repositories.Secrets

List GitHub Actions secret metadata and securely create, replace, or delete repository secrets.

Installation

dotnet add package Soenneker.GitHub.Repositories.Secrets

Configuration

{
  "GH": {
    "Token": "github-token"
  }
}

The token needs GitHub Actions secrets read or write permission for the target repository.

Registration

services.AddGitHubRepositoriesSecretsUtilAsSingleton();

Use AddGitHubRepositoriesSecretsUtilAsScoped() for a scoped consumer.

Create or replace a secret

await secrets.CreateOrUpdate(
    owner: "soenneker",
    repo: "example-repository",
    name: "NUGET__TOKEN",
    value: nugetToken,
    cancellationToken);

CreateOrUpdate retrieves the repository's current public key, encrypts the UTF-8 value with a libsodium sealed box, and sends only the encrypted value to GitHub.

List secret metadata

List<ActionsSecret> repositorySecrets = await secrets.GetAll(
    "soenneker",
    "example-repository",
    cancellationToken);

List<ActionsSecret> organizationSecrets = await secrets.GetOrganization(
    "soenneker",
    "example-repository",
    cancellationToken);

Both list methods follow pagination. GetOrganization returns organization-level Actions secrets made available to the specified repository.

GitHub never returns secret values after storage. These methods return names and metadata only. The four-argument GetAll(owner, repo, name, ...) overload retrieves metadata for one named repository secret.

Delete permanently removes the named repository secret. It does not affect an organization secret with the same name.

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.Secrets:

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.1134 69 9/5/2026
4.0.1133 102 9/5/2026
4.0.1132 40 9/5/2026
4.0.1131 82 9/4/2026
4.0.1130 47 9/4/2026
4.0.1129 97 9/4/2026
4.0.1128 66 9/4/2026
4.0.1127 64 9/4/2026
4.0.1126 57 9/4/2026
4.0.1125 50 9/4/2026
4.0.1123 50 9/4/2026
4.0.1122 37 9/4/2026
4.0.1121 54 9/4/2026
4.0.1120 79 9/3/2026
4.0.1119 71 9/3/2026
4.0.1118 65 9/3/2026
4.0.1117 199 9/1/2026
4.0.1116 122 9/1/2026
4.0.1115 94 9/1/2026
4.0.1114 115 8/31/2026
Loading failed

Update dependency Soenneker.GitHub.ClientUtil to 4.0.639 (#1657)