Commit d7d5c18
authored
🤖 Fix: Ignore Codex 'all clear' comments in CI check (#81)
## Problem
When Codex reviews a PR and doesn't find any issues, it leaves a regular
comment:
> Codex Review: Didn't find any major issues. Delightful!
The current `check_codex_comments.sh` script treats **all** regular
Codex comments as blocking, including these "all clear" messages. This
caused PR #80 to be blocked even though Codex approved it.
## Solution
Filter out Codex comments that contain "Didn't find any major issues" so
they don't block the merge.
## Testing
- ✅ PR #80 (has "Delightful" comment): Now passes
- ✅ PR #74 (has actual review comment): Still blocks correctly
## Changes
- Updated `scripts/check_codex_comments.sh` to use `jq` filter that
excludes "all clear" comments
- Only actionable Codex feedback will now block PRs
_Generated with `cmux`_1 parent 1c6f10a commit d7d5c18
1 file changed
+2
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| 17 | + | |
17 | 18 | | |
18 | | - | |
| 19 | + | |
19 | 20 | | |
20 | 21 | | |
21 | 22 | | |
| |||
0 commit comments