Skip to content

Commit fe2dfa1

Browse files
authored
Merge pull request #1575 from dbcli/RW/codex-review-on-label
Ability to request Codex reviews with a PR label
2 parents d8530f8 + c26c65d commit fe2dfa1

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/codex-review.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name: Codex Review
22

33
on:
44
pull_request_target:
5-
types: [opened, reopened, ready_for_review]
5+
types: [opened, labeled, reopened, ready_for_review]
66

77
jobs:
88
codex-review:
9-
if: github.event.pull_request.draft == false
9+
if: github.event.pull_request.draft == false or (github.event.action == 'labeled' and contains(github.event.pull_request.labels.*.name, 'codex'))
1010
runs-on: ubuntu-latest
1111
permissions:
1212
contents: read

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ Bug Fixes
77
* Catch `getpwuid` error on unknown socket owner.
88

99

10+
Internal
11+
--------
12+
* Tune Codex reviews.
13+
14+
1015
1.54.0 (2026/02/16)
1116
==============
1217

0 commit comments

Comments
 (0)