mirror of
https://github.com/actions/runner.git
synced 2025-12-11 21:06:55 +00:00
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";
|
|
}
|
|
}
|