You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Use same behavior as the runner https://github.com/actions/runner/blob/27d9c886ab9a45e0013cb462529ac85d581f8c41/src/Runner.Worker/Container/DockerCommandManager.cs#L150
52
+
if(!('CI'in(args.environmentVariables??{}))){
53
+
dockerArgs.push('-e','CI=true')
54
+
}
55
+
51
56
constmountVolumes=[
52
57
...(args.userMountVolumes||[]),
53
58
...(args.systemMountVolumes||[])
@@ -403,11 +408,16 @@ export async function containerRun(
// Use same behavior as the runner https://github.com/actions/runner/blob/27d9c886ab9a45e0013cb462529ac85d581f8c41/src/Runner.Worker/Container/DockerCommandManager.cs#L150
0 commit comments