Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/codex-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ jobs:
- name: Run Codex review
id: run_codex
uses: openai/codex-action@v1
env:
# Use env variables to handle untrusted metadata safely
PR_TITLE: ${{ github.event.pull_request.title }}
PR_BODY: ${{ github.event.pull_request.body }}
with:
openai-api-key: ${{ secrets.OPENAI_API_KEY }}
prompt: |
Expand All @@ -53,8 +57,8 @@ jobs:

Pull request title and body:
----
${{ github.event.pull_request.title }}
${{ github.event.pull_request.body }}
$PR_TITLE
$PR_BODY

post-feedback:
runs-on: ubuntu-latest
Expand Down
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
1.65.2 (2026/03/19)
==============

Security
--------
* Harden `codex-review` workflow against script injection from untrusted PR metadata.


1.65.1 (2026/03/18)
==============

Expand Down
1 change: 1 addition & 0 deletions mycli/AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ Contributors:
* tmijieux
* Scott Nemes
* Angelino Storm
* Abhay Kumar


Created by:
Expand Down
Loading