From 9b8d58507557cfd11939d0386d8c17bdcc2fc3d1 Mon Sep 17 00:00:00 2001 From: pakrym-oai Date: Fri, 1 May 2026 10:01:45 -0700 Subject: [PATCH] [codex] Add Codex environment config (#20630) ## Why This adds a checked-in Codex environment configuration so the repo exposes a ready-to-run Codex action from the app environment metadata. ## What changed - Added `.codex/environments/environment.toml` with a generated `Run` action. - The action runs the `codex` binary from `codex-rs/Cargo.toml` with `mcp_oauth_credentials_store=file`. ## Verification - Not run; configuration-only change. --- .codex/environments/environment.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .codex/environments/environment.toml diff --git a/.codex/environments/environment.toml b/.codex/environments/environment.toml new file mode 100644 index 0000000000..f67f1983f2 --- /dev/null +++ b/.codex/environments/environment.toml @@ -0,0 +1,11 @@ +# THIS IS AUTOGENERATED. DO NOT EDIT MANUALLY +version = 1 +name = "codex" + +[setup] +script = "" + +[[actions]] +name = "Run" +icon = "run" +command = "cargo +1.93.0 run --manifest-path=codex-rs/Cargo.toml --bin codex -- -c mcp_oauth_credentials_store=file"