11 lines
301 B
C#
11 lines
301 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";
|
|
}
|
|
}
|