GitHub Actions Runner

This commit is contained in:
Tingluo Huang
2019-10-10 00:52:42 -04:00
commit c8afc84840
1255 changed files with 198670 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
using System;
using System.Runtime.Serialization;
using GitHub.Services.WebApi;
namespace GitHub.Build.WebApi
{
/// <summary>
/// Represents the ability to build forks of the selected repository.
/// </summary>
[DataContract]
public sealed class Forks : BaseSecuredObject
{
public Forks()
{
}
internal Forks(
ISecuredObject securedObject)
: base(securedObject)
{
}
/// <summary>
/// Indicates whether the trigger should queue builds for forks of the selected repository.
/// </summary>
[DataMember]
public Boolean Enabled
{
get;
set;
}
/// <summary>
/// Indicates whether a build should use secrets when building forks of the selected repository.
/// </summary>
[DataMember]
public Boolean AllowSecrets
{
get;
set;
}
}
}