mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
13 lines
504 B
C#
13 lines
504 B
C#
using System;
|
|
|
|
namespace GitHub.DistributedTask.WebApi
|
|
{
|
|
public static class WellKnownDistributedTaskVariables
|
|
{
|
|
public static readonly String JobId = "system.jobId";
|
|
public static readonly String RunnerLowDiskspaceThreshold = "system.runner.lowdiskspacethreshold";
|
|
public static readonly String RunnerEnvironment = "system.runnerEnvironment";
|
|
public static readonly String RunnerServiceConnectivityTest = "system.runner.serviceconnectivitycheckinput";
|
|
}
|
|
}
|