From 9b5e24d4146f9bced5622ff5bc02d6f546098abe Mon Sep 17 00:00:00 2001 From: KeyffMS <124252104+KeyffMS@users.noreply.github.com> Date: Mon, 31 Aug 2026 15:39:48 +0200 Subject: [PATCH] Initialize qualification smoke workspace as Git repo --- .github/workflows/plananvil-codex-qualification.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/plananvil-codex-qualification.yml b/.github/workflows/plananvil-codex-qualification.yml index e6deb16..6a0088a 100644 --- a/.github/workflows/plananvil-codex-qualification.yml +++ b/.github/workflows/plananvil-codex-qualification.yml @@ -40,6 +40,11 @@ jobs: test -n "${workspace}" test -d "${workspace}" cd "${workspace}" + + # The workspace helper intentionally provides a disposable empty + # directory. Initialize a local fixture repository before invoking + # Codex so Git-based qualification checks have a valid boundary. + git init -q git rev-parse --is-inside-work-tree before="$(git status --porcelain=v1 --untracked-files=all)"