From 1fa8c0904b3ca10c9a014b343941a4b1178606b2 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 11 Aug 2026 08:31:27 +0000 Subject: [PATCH] fix(ci): drop --full-auto arg the codex CLI no longer accepts Codex Autopilot has failed on every scheduled run since 2026-08-07 (runs 31191150738, 31402707055): the unpinned openai/codex-action@v1 installs the latest codex CLI, and a release between Aug 5 and Aug 7 removed the --full-auto flag from `codex exec`, so the step exits immediately with "error: unexpected argument '--full-auto' found" (exit code 2). The same commit and workflow succeeded on Aug 5, so the regression is in the CLI, not the repo. The flag is redundant here: the action already runs with sandbox: workspace-write, which is what --full-auto implied. Drop the codex-args input entirely. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01Vi3SmxxDFvyF9t5XE8iMm9 --- .github/workflows/codex-autopilot.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/codex-autopilot.yml b/.github/workflows/codex-autopilot.yml index a3776bf..c8922ff 100644 --- a/.github/workflows/codex-autopilot.yml +++ b/.github/workflows/codex-autopilot.yml @@ -61,7 +61,6 @@ jobs: output-file: /tmp/codex-output.md safety-strategy: drop-sudo sandbox: workspace-write - codex-args: '["--full-auto"]' - name: Explain Codex Action failure if: failure() && steps.run_codex.outcome == 'failure'