From 83d6b835204f8d50881e60e46fa19f23fbe1fe9e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 27 Dec 2025 19:53:59 +0000 Subject: [PATCH 1/2] Initial plan From 42db6bacb12ffc02dbc92b29748dfa4eabc6fab5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 27 Dec 2025 20:03:40 +0000 Subject: [PATCH 2/2] Fix repo memory artifact path bug in push_repo_memory.cjs Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- .devcontainer/devcontainer.json | 9 ++++++++- actions/setup/js/push_repo_memory.cjs | 3 ++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index da5e377b59c..c8ff4249f47 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -3,7 +3,14 @@ "image": "mcr.microsoft.com/devcontainers/go:1-bookworm", "customizations": { "vscode": { - "extensions": ["golang.go", "GitHub.copilot-chat", "GitHub.copilot", "github.vscode-github-actions", "astro-build.astro-vscode", "DavidAnson.vscode-markdownlint"] + "extensions": [ + "golang.go", + "GitHub.copilot-chat", + "GitHub.copilot", + "github.vscode-github-actions", + "astro-build.astro-vscode", + "DavidAnson.vscode-markdownlint" + ] }, "codespaces": { "repositories": { diff --git a/actions/setup/js/push_repo_memory.cjs b/actions/setup/js/push_repo_memory.cjs index cd86a77c5f7..ccea0798a2c 100644 --- a/actions/setup/js/push_repo_memory.cjs +++ b/actions/setup/js/push_repo_memory.cjs @@ -38,7 +38,8 @@ async function main() { } // Source directory with memory files (artifact location) - const sourceMemoryPath = path.join(artifactDir, "memory", memoryId); + // The artifactDir IS the memory directory (no nested structure needed) + const sourceMemoryPath = artifactDir; // Check if artifact memory directory exists if (!fs.existsSync(sourceMemoryPath)) {