Set runner environment in context and env (#2518)

* Set runner environment in runner context and env

Extract runner_environment from the global context and expose in the
`github.runner` context and env as `RUNNER_ENVIRONMENT`.

Signed-off-by: Philip Harrison <[email protected]>

* encoding.

---------

Signed-off-by: Philip Harrison <[email protected]>
Co-authored-by: Tingluo Huang <[email protected]>
This commit is contained in:
Philip Harrison
2023-05-26 13:08:41 -04:00
committed by GitHub
co-authored by Tingluo Huang
parent 8db8bbe13a
commit 21b49c542c
2 changed files with 7 additions and 1 deletions
@@ -1,4 +1,4 @@
using System;
using System;
namespace GitHub.DistributedTask.WebApi
{
@@ -6,5 +6,6 @@ namespace GitHub.DistributedTask.WebApi
{
public static readonly String JobId = "system.jobId";
public static readonly String RunnerLowDiskspaceThreshold = "system.runner.lowdiskspacethreshold";
public static readonly String RunnerEnvironment = "system.runnerEnvironment";
}
}