mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
28 lines
1003 B
C#
28 lines
1003 B
C#
namespace Octokit
|
|
{
|
|
/// <summary>
|
|
/// A client for GitHub's Repository Actions API.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://docs.github.com/en/rest/reference/actions">Repository Actions API documentation</a> for more details.
|
|
/// </remarks>
|
|
public interface IRepositoryActionsClient
|
|
{
|
|
/// <summary>
|
|
/// Client for GitHub's Repository Actions API
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://docs.github.com/en/rest/reference/actions">Deployments API documentation</a> for more details
|
|
/// </remarks>
|
|
IRepositorySecretsClient Secrets { get; }
|
|
|
|
/// <summary>
|
|
/// Client for GitHub's Repository Actions API
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://docs.github.com/en/rest/reference/actions">Deployments API documentation</a> for more details
|
|
/// </remarks>
|
|
IRepositoryVariablesClient Variables { get; }
|
|
}
|
|
}
|