Update Codex environment config#16
Conversation
Update dependency manifests and lockfiles to address current vulnerability findings. Co-authored-by: Codex <noreply@openai.com>
Refresh the repo-local Codex environment file from the canonical harness template so setup and action commands stay aligned with current project scripts. Co-authored-by: Codex <noreply@openai.com>
|
Warning Rate limit exceeded
You’ve run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Pro Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (2)
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 9b886cde75
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| if [[ -f scripts/prepare-worktree.sh ]]; then | ||
| bash scripts/prepare-worktree.sh | ||
| else | ||
| npm install | ||
| fi |
There was a problem hiding this comment.
Install Python test deps in environment setup
The new setup path only runs npm install, but the configured Test action executes npm run test, which delegates to scripts/run-pytest.sh and explicitly exits when pytest is not installed in Python. In a clean environment without a pre-existing .venv or global pytest, setup succeeds but tests deterministically fail, so this environment config does not actually prepare the repo for its primary test workflow.
Useful? React with 👍 / 👎.
| command = ''' | ||
| set -euo pipefail | ||
|
|
||
| npm run 'tooling:render' |
There was a problem hiding this comment.
Remove actions that invoke undefined npm scripts
This action calls npm run tooling:render, but package.json has no tooling:render script (likewise env:check is also absent), so selecting these generated actions will always fail with "Missing script". Because these entries were introduced in this commit, they add broken commands to the environment instead of matching the repository’s actual scripts.
Useful? React with 👍 / 👎.
Updates the repo-local .codex/environments/environment.toml from the canonical Codex environment template so setup and action commands match current project scripts.
Validation: