From fccf5f322128f61e3229718d827046e7ec0fc868 Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Fri, 30 May 2025 23:49:48 -0700 Subject: [PATCH] fix: disable agent reasoning output by default in the GitHub Action (#1183) --- .github/actions/codex/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/codex/action.yml b/.github/actions/codex/action.yml index 715423d0..eb449302 100644 --- a/.github/actions/codex/action.yml +++ b/.github/actions/codex/action.yml @@ -15,14 +15,14 @@ inputs: codex_args: description: "A whitespace-delimited list of arguments to pass to Codex. Due to limitations in YAML, arguments with spaces are not supported. For more complex configurations, use the `codex_home` input." required: false - default: "--full-auto" + default: "--config hide_agent_reasoning=false --full-auto" codex_home: description: "Value to use as the CODEX_HOME environment variable when running Codex." required: false codex_release_tag: description: "The release tag of the Codex model to run." required: false - default: "codex-rs-d519bd8bbd1e1fd9efdc5d68cf7bebdec0dd0f28-1-rust-v0.0.2505270918" + default: "codex-rs-ca8e97fcbcb991e542b8689f2d4eab9d30c399d6-1-rust-v0.0.2505302325" runs: using: "composite"