From 5a2288efaca015eb6ad1eb96fa4cd7667be1de37 Mon Sep 17 00:00:00 2001 From: Grant Buskey Date: Wed, 27 Nov 2024 15:55:50 -0500 Subject: [PATCH] feat: add /github/home to containerAction mounts #181 --- packages/k8s/src/k8s/utils.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/k8s/src/k8s/utils.ts b/packages/k8s/src/k8s/utils.ts index e46af8b8..2d55279b 100644 --- a/packages/k8s/src/k8s/utils.ts +++ b/packages/k8s/src/k8s/utils.ts @@ -42,6 +42,11 @@ export function containerVolumes( mountPath: '/github/file_commands', subPath: '_temp/_runner_file_commands' }, + { + name: POD_VOLUME_NAME, + mountPath: '/github/home', + subPath: '_temp/_github_home' + }, { name: POD_VOLUME_NAME, mountPath: '/github/workflow',