From 3304bcf9e95f958cd51e4420f9fc4277f90f83be Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 24 Mar 2026 05:37:13 +0000 Subject: [PATCH 1/2] Initial plan From f1fd33a12693602e04fb12dcbedb285057c5f71d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 24 Mar 2026 06:17:51 +0000 Subject: [PATCH 2/2] docs: add changeset for push_repo_memory .git exclusion fix Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> Agent-Logs-Url: https://github.com/github/gh-aw/sessions/8cd7b765-4d37-4315-bb78-144a48c2779b --- .changeset/patch-fix-push-repo-memory-git-size.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/patch-fix-push-repo-memory-git-size.md diff --git a/.changeset/patch-fix-push-repo-memory-git-size.md b/.changeset/patch-fix-push-repo-memory-git-size.md new file mode 100644 index 0000000000..91a2c68a35 --- /dev/null +++ b/.changeset/patch-fix-push-repo-memory-git-size.md @@ -0,0 +1,5 @@ +--- +"gh-aw": patch +--- + +Fix `push_repo_memory` tool false-positive size limit errors. The tool was including `.git` directory contents (git object pack files) when calculating total memory size, causing workflows with small actual memory files (~500 bytes) to report inflated sizes (~30 KB) and hit the configured limit. The fix excludes the `.git` directory from the size scan, measuring only actual working tree files.