mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
13 lines
372 B
C#
13 lines
372 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace GitHub.Actions.RunService.WebApi
|
|
{
|
|
[DataContract]
|
|
public class BrokerErrorKind
|
|
{
|
|
public const string RunnerNotFound = "RunnerNotFound";
|
|
public const string RunnerVersionTooOld = "RunnerVersionTooOld";
|
|
public const string HostedRunnerDeprovisioned = "HostedRunnerDeprovisioned";
|
|
}
|
|
}
|