-
Notifications
You must be signed in to change notification settings - Fork 3.9k
1014 lines (915 loc) · 51.8 KB
/
Copy pathcode-review-runner.yml
File metadata and controls
1014 lines (915 loc) · 51.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
name: Code Review Runner
on:
issue_comment:
types: [created]
workflow_dispatch:
inputs:
pr_number:
required: true
type: string
head_sha:
required: true
type: string
base_sha:
required: true
type: string
review_focus:
required: false
type: string
default: ''
manage_status:
description: Update the code-review commit status from this run.
required: false
type: boolean
default: true
workflow_call:
inputs:
pr_number:
required: true
type: string
head_sha:
required: true
type: string
base_sha:
required: true
type: string
review_focus:
required: false
type: string
default: ''
manage_status:
description: >-
Update the code-review commit status. Callers that enable this must
grant statuses: write.
required: false
type: boolean
default: false
permissions:
statuses: write
pull-requests: write
contents: read
issues: write
jobs:
code-review:
runs-on: ubuntu-latest
# Pre-finalization steps can use 183 minutes and auth sync can use 8 more,
# leaving 12 minutes for runner setup and post-job cleanup.
timeout-minutes: 203
if: >-
inputs.pr_number != '' ||
(
github.event_name == 'issue_comment' &&
github.event.issue.pull_request &&
startsWith(github.event.comment.body, '/review') &&
(
github.event.comment.author_association == 'MEMBER' ||
github.event.comment.author_association == 'OWNER' ||
github.event.comment.author_association == 'COLLABORATOR'
)
)
steps:
- name: Resolve review inputs
id: review_inputs
timeout-minutes: 2
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
EVENT_NAME: ${{ github.event_name }}
ISSUE_NUMBER: ${{ github.event.issue.number }}
COMMENT_BODY: ${{ github.event.comment.body }}
INPUT_PR_NUMBER: ${{ inputs.pr_number }}
INPUT_HEAD_SHA: ${{ inputs.head_sha }}
INPUT_BASE_SHA: ${{ inputs.base_sha }}
INPUT_REVIEW_FOCUS: ${{ inputs.review_focus }}
INPUT_MANAGE_STATUS: ${{ inputs.manage_status }}
REPO: ${{ github.repository }}
run: |
if [ -n "$INPUT_PR_NUMBER" ]; then
PR_NUMBER="$INPUT_PR_NUMBER"
HEAD_SHA="$INPUT_HEAD_SHA"
BASE_SHA="$INPUT_BASE_SHA"
REVIEW_FOCUS="$INPUT_REVIEW_FOCUS"
MANAGE_STATUS="$INPUT_MANAGE_STATUS"
elif [ "$EVENT_NAME" = "issue_comment" ]; then
PR_NUMBER="$ISSUE_NUMBER"
PR_JSON="$(gh api "repos/${REPO}/pulls/${PR_NUMBER}")"
HEAD_SHA="$(jq -er '.head.sha' <<<"$PR_JSON")"
BASE_SHA="$(jq -er '.base.sha' <<<"$PR_JSON")"
REVIEW_FOCUS="$(printf '%s' "${COMMENT_BODY#'/review'}" |
python3 -c 'import sys; sys.stdout.write(sys.stdin.read().lstrip())')"
MANAGE_STATUS=true
else
echo "Review inputs are unavailable for event '$EVENT_NAME'." >&2
exit 1
fi
test -n "$PR_NUMBER"
test -n "$HEAD_SHA"
test -n "$BASE_SHA"
if [ "$MANAGE_STATUS" = "true" ]; then
PR_JSON="${PR_JSON:-$(gh api "repos/${REPO}/pulls/${PR_NUMBER}")}"
LIVE_HEAD_SHA="$(jq -er '.head.sha' <<<"$PR_JSON")"
LIVE_BASE_SHA="$(jq -er '.base.sha' <<<"$PR_JSON")"
if [ "$LIVE_HEAD_SHA" != "$HEAD_SHA" ] || [ "$LIVE_BASE_SHA" != "$BASE_SHA" ]; then
echo "Refusing to update status for a PR/head/base mismatch." >&2
echo "Declared base/head: $BASE_SHA $HEAD_SHA" >&2
echo "Current base/head: $LIVE_BASE_SHA $LIVE_HEAD_SHA" >&2
exit 1
fi
fi
echo "pr_number=$PR_NUMBER" >> "$GITHUB_OUTPUT"
echo "head_sha=$HEAD_SHA" >> "$GITHUB_OUTPUT"
echo "base_sha=$BASE_SHA" >> "$GITHUB_OUTPUT"
echo "manage_status=$MANAGE_STATUS" >> "$GITHUB_OUTPUT"
focus_delimiter="review_focus_${RANDOM}_${RANDOM}"
{
echo "review_focus<<${focus_delimiter}"
printf '%s\n' "$REVIEW_FOCUS"
echo "${focus_delimiter}"
} >> "$GITHUB_OUTPUT"
- name: Mark Code Review status as pending
if: ${{ steps.review_inputs.outputs.manage_status == 'true' }}
timeout-minutes: 2
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
HEAD_SHA: ${{ steps.review_inputs.outputs.head_sha }}
REPO: ${{ github.repository }}
run: |
gh api "repos/${REPO}/statuses/${HEAD_SHA}" \
-X POST \
-f state='pending' \
-f context='code-review' \
-f description="Automated review is running for ${HEAD_SHA}." \
-f target_url="${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
- name: Checkout repository
timeout-minutes: 10
uses: actions/checkout@v4
with:
ref: ${{ steps.review_inputs.outputs.head_sha }}
fetch-depth: 0
- name: Install ripgrep
timeout-minutes: 5
run: |
sudo apt-get update
sudo apt-get install -y ripgrep
- name: Install Codex
timeout-minutes: 5
run: |
for attempt in 1 2 3; do
if npm install -g @openai/codex; then
codex --version
exit 0
fi
echo "Install attempt $attempt failed, retrying in 10s..."
sleep 10
done
echo "All install attempts failed"
exit 1
- name: Install ossutil
timeout-minutes: 5
run: |
tmp_dir="$(mktemp -d)"
trap 'rm -rf "$tmp_dir"' EXIT
curl -fsSL -o "$tmp_dir/ossutil.zip" https://gosspublic.alicdn.com/ossutil/1.7.19/ossutil-v1.7.19-linux-amd64.zip
unzip -q "$tmp_dir/ossutil.zip" -d "$tmp_dir"
sudo install -m 0755 "$tmp_dir/ossutil-v1.7.19-linux-amd64/ossutil" /usr/local/bin/ossutil
- name: Install Codex goal binary
timeout-minutes: 10
run: |
codex_cmd="$(command -v codex)"
codex_target="$(readlink -f "$codex_cmd")"
tmp_dir="$(mktemp -d)"
trap 'rm -rf "$tmp_dir"' EXIT
downloaded=false
for object in "$OSS_CODEX_GOAL_OBJECT" "$OSS_CODEX_GOAL_FALLBACK_OBJECT"; do
if ossutil -i "$OSS_AK" -k "$OSS_SK" -e "$OSS_ENDPOINT" cp -f "$object" "$tmp_dir/codex-goal"; then
downloaded=true
break
fi
done
test "$downloaded" = "true"
test -s "$tmp_dir/codex-goal"
sudo install -m 0755 "$tmp_dir/codex-goal" "$codex_target"
"$codex_cmd" exec --help | grep -q -- '--goal'
"$codex_cmd" --version
env:
OSS_AK: ${{ secrets.OSS_AK }}
OSS_SK: ${{ secrets.OSS_SK }}
OSS_ENDPOINT: oss-cn-hongkong.aliyuncs.com
OSS_CODEX_GOAL_OBJECT: oss://doris-community-ci/codex-goal
OSS_CODEX_GOAL_FALLBACK_OBJECT: oss://doris-community-ci/codex/codex-goal
- name: Configure Codex auth
id: auth
timeout-minutes: 5
run: |
set -o pipefail
install -m 700 -d "$RUNNER_TEMP/codex-home"
printf 'CODEX_HOME=%s\n' "$RUNNER_TEMP/codex-home" >> "$GITHUB_ENV"
auth_prefix='oss://doris-community-ci/codex/auth.json.'
auth_listing="$(mktemp "$RUNNER_TEMP/codex-auth-objects.XXXXXX")"
if ! ossutil -i "$OSS_AK" -k "$OSS_SK" -e "$OSS_ENDPOINT" ls "$auth_prefix" -s > "$auth_listing"; then
auth_failure_reason="Failed to list Codex review auth objects from OSS."
echo "failure_reason=$auth_failure_reason" >> "$GITHUB_OUTPUT"
echo "::error::$auth_failure_reason"
exit 1
fi
auth_candidates="$(mktemp "$RUNNER_TEMP/codex-auth-candidates.XXXXXX")"
awk '$0 ~ /^oss:\/\/doris-community-ci\/codex\/auth\.json\.[0-9]+$/ { print }' \
"$auth_listing" > "$auth_candidates"
if [ ! -s "$auth_candidates" ]; then
auth_failure_reason="No numbered Codex review auth objects were found in OSS."
echo "failure_reason=$auth_failure_reason" >> "$GITHUB_OUTPUT"
echo "::error::$auth_failure_reason"
exit 1
fi
auth_object=""
earliest_retry_after_epoch=""
now_epoch="$(date +%s)"
while IFS= read -r candidate; do
context_file="$(mktemp "$RUNNER_TEMP/codex-auth-context.XXXXXX")"
if ossutil -i "$OSS_AK" -k "$OSS_SK" -e "$OSS_ENDPOINT" \
cp -f "${candidate}.context" "$context_file" >/dev/null 2>&1; then
if raw_retry_after_epoch="$(jq -ser '
select(length == 1)
| .[0]
| select(type == "object"
and .version == 1
and .state == "usage_limited"
and (.retry_after_epoch | type == "number" and floor == .))
| .retry_after_epoch
' "$context_file" 2>/dev/null)" && \
retry_after_epoch="$(date -u -d "@$raw_retry_after_epoch" +%s 2>/dev/null)"; then
if [ "$retry_after_epoch" -gt "$now_epoch" ]; then
retry_at="$(date -u -d "@$retry_after_epoch" +%Y-%m-%dT%H:%M:%SZ)"
echo "Skipping usage-limited Codex auth ${candidate##*/} until $retry_at."
if [ -z "$earliest_retry_after_epoch" ] || \
[ "$retry_after_epoch" -lt "$earliest_retry_after_epoch" ]; then
earliest_retry_after_epoch="$retry_after_epoch"
fi
continue
fi
else
echo "::warning::Ignoring unusable Codex auth context for ${candidate##*/}; the account remains eligible."
fi
fi
auth_object="$candidate"
break
done < <(shuf "$auth_candidates")
if [ -z "$auth_object" ]; then
retry_at="$(date -u -d "@$earliest_retry_after_epoch" +%Y-%m-%dT%H:%M:%SZ)"
auth_failure_reason="All Codex review accounts are usage-limited; earliest retry is $retry_at."
echo "failure_reason=$auth_failure_reason" >> "$GITHUB_OUTPUT"
echo "::error::$auth_failure_reason"
exit 1
fi
printf 'CODEX_AUTH_OSS_OBJECT=%s\n' "$auth_object" >> "$GITHUB_ENV"
echo "Selected Codex auth object: ${auth_object##*/}"
ossutil -i "$OSS_AK" -k "$OSS_SK" -e "$OSS_ENDPOINT" cp -f "$auth_object" "$RUNNER_TEMP/codex-home/auth.json"
chmod 600 "$RUNNER_TEMP/codex-home/auth.json"
test -s "$RUNNER_TEMP/codex-home/auth.json"
jq -e '
.auth_mode == "chatgpt"
and (.tokens.access_token | type == "string" and length > 0)
and (.tokens.refresh_token | type == "string" and length > 0)
' "$RUNNER_TEMP/codex-home/auth.json" >/dev/null
sha256sum "$RUNNER_TEMP/codex-home/auth.json" \
| awk '{print $1}' \
> "$RUNNER_TEMP/codex-auth-original.sha256"
cat > "$RUNNER_TEMP/codex-home/config.toml" <<EOF
cli_auth_credentials_store = "file"
approval_policy = "never"
[features]
memories = true
[memories]
use_memories = true
generate_memories = true
[shell_environment_policy]
inherit = "all"
[otel]
environment = "github-actions"
exporter = "none"
metrics_exporter = "none"
trace_exporter = "none"
EOF
chmod 600 "$RUNNER_TEMP/codex-home/config.toml"
env:
OSS_AK: ${{ secrets.OSS_AK }}
OSS_SK: ${{ secrets.OSS_SK }}
OSS_ENDPOINT: oss-cn-hongkong.aliyuncs.com
- name: Sync Codex memories from OSS
timeout-minutes: 5
run: |
install -m 700 -d "$CODEX_HOME/memories"
archive="$RUNNER_TEMP/codex-memories.tar.gz"
listing="$RUNNER_TEMP/codex-memories.list"
if ossutil -i "$OSS_AK" -k "$OSS_SK" -e "$OSS_ENDPOINT" cp -f "$OSS_CODEX_MEMORIES_OBJECT" "$archive"; then
if [ -s "$archive" ]; then
tar -tzf "$archive" > "$listing"
if [ -s "$listing" ]; then
awk '
$0 != "memories" && $0 != "memories/" && $0 !~ /^memories\// { bad = 1 }
END { exit bad }
' "$listing"
tar -xzf "$archive" -C "$CODEX_HOME"
else
echo "Codex memories archive is empty; continuing with empty memories."
fi
else
echo "Codex memories archive is empty; continuing with empty memories."
fi
else
echo "No Codex memories archive could be downloaded; continuing with empty memories."
fi
install -m 700 -d "$CODEX_HOME/memories"
touch "$CODEX_HOME/memories/memory_summary.md"
chmod -R go-rwx "$CODEX_HOME/memories" || true
env:
OSS_AK: ${{ secrets.OSS_AK }}
OSS_SK: ${{ secrets.OSS_SK }}
OSS_ENDPOINT: oss-cn-hongkong.aliyuncs.com
OSS_CODEX_MEMORIES_OBJECT: oss://doris-community-ci/memories.tar.gz
- name: Prepare review context directory
timeout-minutes: 2
run: |
review_context_dir="$(mktemp -d "$GITHUB_WORKSPACE/.code-review.XXXXXX")"
review_context_rel="$(basename "$review_context_dir")"
printf 'REVIEW_CONTEXT_DIR=%s\n' "$review_context_dir" >> "$GITHUB_ENV"
printf 'REVIEW_CONTEXT_REL=%s\n' "$review_context_rel" >> "$GITHUB_ENV"
- name: Fetch existing PR review threads
timeout-minutes: 5
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO: ${{ github.repository }}
PR_NUMBER: ${{ steps.review_inputs.outputs.pr_number }}
run: |
MAX_THREADS=30
MAX_BODY_CHARS=1200
if gh api --paginate --slurp repos/${REPO}/pulls/${PR_NUMBER}/comments > "$REVIEW_CONTEXT_DIR/pr_review_comments_pages.json" 2>"$REVIEW_CONTEXT_DIR/pr_review_comments_error.log" \
&& jq 'add | sort_by((.in_reply_to_id // .id), .id)' "$REVIEW_CONTEXT_DIR/pr_review_comments_pages.json" > "$REVIEW_CONTEXT_DIR/pr_review_comments.json" 2>>"$REVIEW_CONTEXT_DIR/pr_review_comments_error.log" \
&& jq -r '
def shorten($limit):
if (. // "" | length) > $limit then
.[0:$limit] + "...(truncated)"
else
. // ""
end;
if length == 0 then
"No existing inline review comments or replies were found for this PR."
else
group_by(.in_reply_to_id // .id)
| sort_by(.[0].created_at // "")
| reverse
| .[:$max_threads]
| map(
. as $thread
| $thread[0] as $root
| "### " + ($root.path // "(unknown path)") + ":" + (($root.line // $root.original_line // "n/a") | tostring)
+ "\nURL: " + ($root.html_url // "")
+ "\nComments:\n"
+ (
$thread
| map(
"- " + (.user.login // "unknown")
+ " at " + (.created_at // "")
+ (if .in_reply_to_id then " (reply):" else " (original comment):" end)
+ "\n"
+ ((.body | shorten($max_body_chars)) | split("\n") | map(" " + .) | join("\n"))
)
| join("\n")
)
)
| join("\n\n")
end
' --argjson max_threads "$MAX_THREADS" --argjson max_body_chars "$MAX_BODY_CHARS" "$REVIEW_CONTEXT_DIR/pr_review_comments.json" > "$REVIEW_CONTEXT_DIR/pr_review_threads.md" 2>>"$REVIEW_CONTEXT_DIR/pr_review_comments_error.log"; then
echo "Fetched existing PR review threads successfully."
else
printf '%s\n\n' \
'Existing PR review threads could not be fetched or formatted for this run.' \
'Proceed with the automated review without this auxiliary context.' \
> "$REVIEW_CONTEXT_DIR/pr_review_threads.md"
if [ -s "$REVIEW_CONTEXT_DIR/pr_review_comments_error.log" ]; then
{
printf '\n%s\n' 'Fetch/format error details:'
sed 's/^/ /' "$REVIEW_CONTEXT_DIR/pr_review_comments_error.log"
} >> "$REVIEW_CONTEXT_DIR/pr_review_threads.md"
fi
fi
- name: Prepare user review focus
timeout-minutes: 2
env:
REVIEW_FOCUS: ${{ steps.review_inputs.outputs.review_focus }}
run: |
if [ -n "$(printf '%s' "$REVIEW_FOCUS" | tr -d '[:space:]')" ]; then
printf '%s\n' "$REVIEW_FOCUS" > "$REVIEW_CONTEXT_DIR/review_focus.txt"
else
printf 'No additional user-provided review focus.\n' > "$REVIEW_CONTEXT_DIR/review_focus.txt"
fi
- name: Prepare authoritative PR context and required AGENTS guides
id: review_context
timeout-minutes: 10
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO: ${{ github.repository }}
PR_NUMBER: ${{ steps.review_inputs.outputs.pr_number }}
HEAD_SHA: ${{ steps.review_inputs.outputs.head_sha }}
BASE_SHA: ${{ steps.review_inputs.outputs.base_sha }}
HELPER_REF: ${{ github.workflow_sha || github.sha }}
run: |
checkout_head_sha="$(git rev-parse HEAD)"
if [ "$checkout_head_sha" != "$HEAD_SHA" ]; then
echo "Checked-out HEAD $checkout_head_sha does not match expected PR head $HEAD_SHA"
exit 1
fi
live_pr="$(gh api "repos/${REPO}/pulls/${PR_NUMBER}")"
live_head_sha="$(jq -r '.head.sha' <<<"$live_pr")"
live_base_sha="$(jq -r '.base.sha' <<<"$live_pr")"
if [ "$live_head_sha" != "$HEAD_SHA" ] || [ "$live_base_sha" != "$BASE_SHA" ]; then
echo "PR changed while review context was being prepared; restart the review"
echo "Expected base/head: $BASE_SHA $HEAD_SHA"
echo "Current base/head: $live_base_sha $live_head_sha"
exit 1
fi
if [ "$(git rev-parse --is-shallow-repository)" != "false" ]; then
echo "Full history is required to generate an authoritative three-dot PR diff"
exit 1
fi
diff_range="${BASE_SHA}...${HEAD_SHA}"
merge_base_sha="$(git merge-base "$BASE_SHA" "$HEAD_SHA")"
echo "Generating review context from $diff_range (merge base: $merge_base_sha)"
git rev-list --count "${merge_base_sha}..${HEAD_SHA}"
changed_files_tmp="$(mktemp "$REVIEW_CONTEXT_DIR/pr_changed_files.txt.tmp.XXXXXX")"
git diff --name-only --no-ext-diff "$diff_range" > "$changed_files_tmp"
mv "$changed_files_tmp" "$REVIEW_CONTEXT_DIR/pr_changed_files.txt"
diff_tmp="$(mktemp "$REVIEW_CONTEXT_DIR/pr.diff.tmp.XXXXXX")"
git diff --no-ext-diff --no-color "$diff_range" > "$diff_tmp"
mv "$diff_tmp" "$REVIEW_CONTEXT_DIR/pr.diff"
git diff --shortstat "$diff_range"
helper="$RUNNER_TEMP/prepare_review_agents.py"
gh api \
-H "Accept: application/vnd.github.raw" \
"repos/${REPO}/contents/.github/scripts/prepare_review_agents.py?ref=${HELPER_REF}" \
> "$helper"
chmod 700 "$helper"
python3 "$helper" \
--changed-files "$REVIEW_CONTEXT_DIR/pr_changed_files.txt" \
--required-agents "$REVIEW_CONTEXT_DIR/required_agents.txt" \
--prompt-block "$REVIEW_CONTEXT_DIR/required_agents_prompt.txt"
echo "Required AGENTS.md files for this review:"
sed 's/^/ /' "$REVIEW_CONTEXT_DIR/required_agents.txt"
- name: Prepare review prompt
timeout-minutes: 5
run: |
cat > "$REVIEW_CONTEXT_DIR/review_prompt.txt" <<'PROMPT'
You are performing an automated code review inside a GitHub Actions runner. The gh CLI is available and authenticated via GH_TOKEN.
The current directory is the code repository for the PR to be reviewed.
This environment is only used for review operations, so do not attempt any builds or code modifications. However, temporary scripts you use for review purposes are exceptions.
You MUST NOT attempt to access any files outside the current directory. and you DO NOT need to. But this does not prevent you from normally using any skill or web fetch tools.
You can comment on the pull request.
This review task is executed in Codex goal mode. Subsequent prompts and skill indicate all the review and commenting actions you need to perform. The current round can only be concluded after completing the main agent risk scan, the normal full-review subagent review for each round, and the risk-focused subagent scan (if applicable). The final GitHub review can only be submitted after all subagents return NO_NEW_VALUABLE_FINDINGS, and all candidate points from the subagents have been validated, deduplicated, accepted, or rejected by the main agent.
In addition, the number of iterations shall not exceed 3 rounds. If new subagents identify valuable candidate points after 3 rounds, the main agent must indicate in the final summary that the review is incomplete.
Context:
- Repository: PLACEHOLDER_REPO
- PR number: PLACEHOLDER_PR_NUMBER
- PR Head SHA: PLACEHOLDER_HEAD_SHA
- PR Base SHA: PLACEHOLDER_BASE_SHA
- Existing inline review threads: PLACEHOLDER_CONTEXT_DIR/pr_review_threads.md
- Raw inline review comments JSON: PLACEHOLDER_CONTEXT_DIR/pr_review_comments.json
- User review focus: PLACEHOLDER_CONTEXT_DIR/review_focus.txt
- PR changed files: PLACEHOLDER_CONTEXT_DIR/pr_changed_files.txt
- Authoritative aggregate PR diff: PLACEHOLDER_CONTEXT_DIR/pr.diff
- PR diff range: merge-base(PLACEHOLDER_BASE_SHA, PLACEHOLDER_HEAD_SHA) to PLACEHOLDER_HEAD_SHA
- Required AGENTS.md files: PLACEHOLDER_CONTEXT_DIR/required_agents.txt
- Shared subagent review ledger: PLACEHOLDER_CONTEXT_DIR/subagent_review_findings.md
PR diff and path-reading (for all subagents and the main agent):
- PLACEHOLDER_CONTEXT_DIR/pr.diff and PLACEHOLDER_CONTEXT_DIR/pr_changed_files.txt were both generated locally with `git diff PLACEHOLDER_BASE_SHA...PLACEHOLDER_HEAD_SHA` after the live PR base/head were verified. They are the authoritative PR diff and changed-path list: they contain changes from the computed merge base to the PR head. The listed PR Base SHA identifies the target-branch snapshot and is not necessarily the diff's left endpoint. Do not obtain the PR diff or changed-path list through other means.
- Before reading any file whose exact path is not already confirmed by PLACEHOLDER_CONTEXT_DIR/pr_changed_files.txt, PLACEHOLDER_CONTEXT_DIR/pr.diff, or a previous successful command output, you MUST first run `rg --files` to confirm the actual path of the target file.
Before reviewing any code, you MUST read and follow the code review skill in this repository. During review, you must strictly follow those instructions.
The active review goal's progress tracking MUST include, and must stay current throughout the review:
1. Read the review prompt, code-review skill, required AGENTS.md files, existing review threads, user focus, changed-file list, and the shared subagent review ledger.
2. Perform a main-agent initial risk scan before spawning review subagents. You must thoroughly read all the changes in this PR and understand all the involved mechanisms, pointing out: if there is a problem with this PR, where is the problem most likely to be? Or are there any points you suspect to be risky? write the result under `## Main Initial Risk Scan` in the shared ledger.
3. Based on the requirements of the code-review skill regarding the coverage points of the review spawn 1-3 subagents (depends on the complexity of the PR), each focusing on certain aspects. The sum of their focus points must fully cover the entire content of PR, as well as the points required in skill and any additional review points you consider necessary. They must complete the review of their own aspects and identify all possible issues before they can finish their work. You need assign each subagent a dedicated section in the shared ledger.
4. If the main initial risk scan identifies one or more suspicious mechanisms, spawn additional risk-focused subagent(s), separate from the normal complete-review subagents, to specially investigate those specific mechanisms and their upstream/downstream interactions.
5. Read the shared ledger after every subagent result, then independently verify, deduplicate, accept, or dismiss every candidate in the main merged section. The status of each candidate must be clarified after this stage.
6. If all subagents return `NO_NEW_VALUABLE_FINDINGS`, or if this loop has already executed 3 rounds, conduct the necessary review to ensure that all current candidate points have been verified, deduplicated, accepted, or rejected, and then submit the final GitHub comment. Otherwise, continue with the next round of the same review process from the beginning.
7. Submit the final GitHub review and verify that all accepted comments landed before marking the goal complete. You must address all checkpoints required by the skill, user concerns (if any), and indicate the status of the review completion.
Subagent Constraints:
- Every subagent appends only to its assigned ledger section, while reading the whole ledger to avoid duplicate candidates.
- Follow the principles indicated in the code-review skill.
- The shared subagent review ledger is PLACEHOLDER_CONTEXT_DIR/subagent_review_findings.md. Subagents must read the whole ledger before reviewing, avoid duplicating existing candidates, and append their findings only under their assigned subagent section. They must not rewrite the whole ledger, edit another subagent section, edit the main merged sections, edit repository source files, or submit GitHub comments.
- Each subagent must record candidate findings in its own ledger section with stable IDs, path/line, claim, evidence, duplicate relationship if any, and recommendation. Do not add duplicates of existing items. This section-owned append-only rule is mandatory to avoid concurrent patch conflicts.
- Before returning, a further thought must be made—what problem, if any, might I have missed just now, and where? Then a thorough recheck should be conducted to confirm whether this potential issue is real and whether it needs to be reported.
Main-agent Constraints:
- The active review goal MUST remain incomplete until every suspicious point found during review has a clear conclusion: submitted as an inline issue, dismissed as already covered by existing review context, or dismissed with concrete code evidence explaining why it is not a bug.
- The main initial risk scan MUST be written under `## Main Initial Risk Scan` in the shared ledger before any subagent is spawned. For every risk focus item, include: ID, changed files/lines involved, related mechanisms to inspect, why it is suspicious, required upstream/downstream files or paths, and the exact question the risk-focused subagent must answer.
- The shared subagent review ledger is PLACEHOLDER_CONTEXT_DIR/subagent_review_findings.md. Before spawning any subagent, the main agent MUST read this ledger. Every subagent prompt MUST include this ledger path and the exact ledger section assigned to that subagent.
- The main agent must read the shared ledger after each subagent result, merge duplicate candidates into the main merged section, update candidate statuses, and keep a proposed final comment set in the main-owned ledger sections. It must also update the status of every main risk focus item.
- Before submitting the final review, do one explicit final sweep over the changed-file list and your unresolved candidate list. Only finish when there are no unresolved suspicious points and all possible substantiated bugs have been pointed out in the GitHub review. At this stage, you can conduct final research on any part you still have doubts about or which may not have been fully investigated, ensuring that all potential issues have been thoroughly investigated and reported.
Any agent MUST NOT stop after finding the first blocking issue. Keep reviewing changed files, related control flow, tests, and parallel/special-case paths until all plausible correctness, lifecycle, configuration, compatibility, performance, and coverage bugs have been investigated and every bug you can substantiate has been reported.
Before inspecting the PR diff or related code, you MUST read the contents of every AGENTS.md file listed below. These paths are computed from the PR changed file ancestors in this checkout. Searching for or listing paths is not sufficient; read each listed file directly.
Required AGENTS.md files for this PR:
PLACEHOLDER_REQUIRED_AGENTS_BLOCK
Before proposing any new issue, you MUST read PLACEHOLDER_CONTEXT_DIR/pr_review_threads.md and treat every existing inline comment thread and reply as already-known review context.
Do NOT submit the same or substantially similar issue again if it has already been raised in the existing review threads, even if you would phrase it differently. Only raise a similar concern when the PR introduces a genuinely different instance in another location that is not already covered by the existing thread, and explain why it is distinct.
You MUST also read PLACEHOLDER_CONTEXT_DIR/review_focus.txt. Perform a complete review of the whole PR as usual, and additionally pay special attention to the user-provided focus points from that file. In the final summary, include a short response to the user focus points, including when no additional issue was found for them.
In addition, you can perform any desired review operations to observe suspicious code and details in order to identify issues as much as possible.
## Final response format
- After completing the review, you MUST provide a final summary opinion based on the rules defined in AGENTS.md and the code-review skill. The summary must include conclusions for each applicable critical checkpoint.
- If the overall quality of PR is good and there are no critical blocking issues (even if there are some tolerable minor issues), submit an opinion on approval using: gh pr review PLACEHOLDER_PR_NUMBER --comment --body "<summary>"
- Note that when submitting review comments in this way, the content will not be escaped, so you need to input multi-line text with line breaks directly, rather than using `\n`.
- If issues found, submit a review with inline comments plus a comprehensive summary body. Use GitHub Reviews API to ensure comments are inline:
- Inline comment bodies may include GitHub suggested changes blocks when you can propose a precise patch.
- Prefer suggested changes for small, self-contained fixes (for example typos, trivial refactors, or narrowly scoped code corrections).
- Do not force suggested changes for broad, architectural, or multi-file issues; explain those normally.
- Build a JSON array of comments like: [{ "path": "<file>", "position": <diff_position>, "body": "..." }]
- Submit via: gh api repos/PLACEHOLDER_REPO/pulls/PLACEHOLDER_PR_NUMBER/reviews --input <json_file>
- The JSON file should contain: {"event":"REQUEST_CHANGES","body":"<summary>","comments":[...]}
PROMPT
sed -i "s|PLACEHOLDER_REPO|${REPO}|g" "$REVIEW_CONTEXT_DIR/review_prompt.txt"
sed -i "s|PLACEHOLDER_PR_NUMBER|${PR_NUMBER}|g" "$REVIEW_CONTEXT_DIR/review_prompt.txt"
sed -i "s|PLACEHOLDER_HEAD_SHA|${HEAD_SHA}|g" "$REVIEW_CONTEXT_DIR/review_prompt.txt"
sed -i "s|PLACEHOLDER_BASE_SHA|${BASE_SHA}|g" "$REVIEW_CONTEXT_DIR/review_prompt.txt"
sed -i "s|PLACEHOLDER_CONTEXT_DIR|${REVIEW_CONTEXT_REL}|g" "$REVIEW_CONTEXT_DIR/review_prompt.txt"
python3 - "$REVIEW_CONTEXT_DIR/review_prompt.txt" "$REVIEW_CONTEXT_DIR/required_agents_prompt.txt" <<'PY'
import sys
from pathlib import Path
prompt_path = Path(sys.argv[1])
required_agents_path = Path(sys.argv[2])
prompt = prompt_path.read_text()
required_agents = required_agents_path.read_text().rstrip()
prompt_path.write_text(prompt.replace("PLACEHOLDER_REQUIRED_AGENTS_BLOCK", required_agents))
PY
cat > "$REVIEW_CONTEXT_DIR/subagent_review_findings.md" <<'LEDGER'
# Shared Subagent Review Ledger
This is the shared source of truth for subagent-assisted review.
Rules:
- Subagents must read this whole file before reviewing.
- Each subagent may append only to its assigned section under `Subagent Candidate Sections`.
- Subagents must not rewrite this file, edit another subagent section, edit main-owned sections, edit repository source files, or submit GitHub comments.
- Avoid duplicates. If a candidate overlaps an existing candidate, add a duplicate note in your own section that references the existing candidate ID.
- The main agent owns final status, final deduplication, GitHub review submission, and GitHub API verification.
## Main Initial Risk Scan
Main-owned format:
- ID:
Status:
Changed files/lines:
Related mechanisms to inspect:
Why suspicious:
Required upstream/downstream files or paths:
Question for risk-focused subagent:
Final conclusion:
Candidate statuses:
- proposed_by_subagent
- accepted_for_inline_comment
- dismissed_with_evidence
- duplicated
Candidate format:
- ID:
Owner:
Status:
Path:
Line:
Claim:
Evidence:
Duplicate relationship:
Recommendation:
## Main Merged Findings
Main-owned format:
- ID:
Source IDs:
Owner: main
Status:
Path:
Line:
Claim:
Evidence:
Duplicate relationship:
Main verification:
Proposed inline body:
## Dismissed Or Duplicate Points
## Proposed Final Comment Set
## Convergence Rounds
LEDGER
cat > "$REVIEW_CONTEXT_DIR/codex_goal_prompt.txt" <<EOF
You are performing an automated code review inside a GitHub Actions runner.
This invocation is already running in Codex goal mode. Before inspecting the PR diff or related code, read ${REVIEW_CONTEXT_REL}/review_prompt.txt verbatim and follow that file as the complete review instruction set.
This document outlines the complete process, cyclic procedures, and exit agreements you need to follow. Please read it seriously and reconfirm the requirements at the end of each cycle. Complete the review according to the stipulations in this document.
EOF
env:
REPO: ${{ github.repository }}
PR_NUMBER: ${{ steps.review_inputs.outputs.pr_number }}
HEAD_SHA: ${{ steps.review_inputs.outputs.head_sha }}
BASE_SHA: ${{ steps.review_inputs.outputs.base_sha }}
- name: Run automated code review
id: review
timeout-minutes: 90
continue-on-error: true
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO: ${{ github.repository }}
PR_NUMBER: ${{ steps.review_inputs.outputs.pr_number }}
HEAD_SHA: ${{ steps.review_inputs.outputs.head_sha }}
run: |
GOAL_PROMPT="$(cat "$REVIEW_CONTEXT_DIR/codex_goal_prompt.txt")"
review_started_at="$(date -u +%Y-%m-%dT%H:%M:%SZ)"
set +e
# GitHub-hosted runners are ephemeral. Avoid workspace-write here because
# Codex uses bubblewrap for that mode and uid maps can be unavailable.
codex exec --goal "$GOAL_PROMPT" \
--cd "$GITHUB_WORKSPACE" \
--model "gpt-5.6-sol" \
--config "model_reasoning_effort=xhigh" \
--sandbox danger-full-access \
--color never \
--json \
--output-last-message "$REVIEW_CONTEXT_DIR/codex-final-message.txt" \
> "$REVIEW_CONTEXT_DIR/codex-events.jsonl" \
2> >(tee "$REVIEW_CONTEXT_DIR/codex-stderr.log" >&2)
status=$?
set -e
failure_reason=""
if [ "$status" -ne 0 ]; then
if [ -s "$REVIEW_CONTEXT_DIR/codex-events.jsonl" ]; then
failure_reason="$(jq -r 'select(.type == "turn.failed") | .error.message // empty' "$REVIEW_CONTEXT_DIR/codex-events.jsonl" | tail -n 1)"
if [ -z "$failure_reason" ]; then
failure_reason="$(jq -r 'select(.type == "error") | .message // .error.message // empty' "$REVIEW_CONTEXT_DIR/codex-events.jsonl" | tail -n 1)"
fi
fi
if [ -z "$failure_reason" ] && [ -s "$REVIEW_CONTEXT_DIR/codex-stderr.log" ]; then
failure_reason="$(awk 'NF { line = $0 } END { print line }' "$REVIEW_CONTEXT_DIR/codex-stderr.log")"
fi
if [ -z "$failure_reason" ]; then
failure_reason="Codex exited with status $status"
fi
usage_limit_retry_after_epoch=""
if grep -Fqi "You've hit your usage limit" <<<"$failure_reason"; then
now_epoch="$(date +%s)"
retry_at_text="$(sed -nE \
's/.*[Tt]ry again at (([A-Za-z]{3} [0-9]{1,2}(st|nd|rd|th)?, [0-9]{4} )?[0-9]{1,2}:[0-9]{2} (AM|PM)).*/\1/p' \
<<<"$failure_reason")"
if [ -n "$retry_at_text" ]; then
retry_at_text="$(sed -E 's/([0-9])(st|nd|rd|th),/\1,/' <<<"$retry_at_text")"
usage_limit_retry_after_epoch="$(date -u -d "$retry_at_text" +%s 2>/dev/null || true)"
fi
if [ -z "$usage_limit_retry_after_epoch" ] || \
[ "$usage_limit_retry_after_epoch" -le "$now_epoch" ]; then
usage_limit_retry_after_epoch="$((now_epoch + 30 * 60))"
echo "::warning::Codex usage limit had no usable future retry time; using the explicit 30-minute fallback."
fi
retry_at="$(date -u -d "@$usage_limit_retry_after_epoch" +%Y-%m-%dT%H:%M:%SZ)"
echo "Codex usage limit detected; account retry time is $retry_at."
echo "usage_limit_retry_after_epoch=$usage_limit_retry_after_epoch" >> "$GITHUB_OUTPUT"
fi
fi
if [ -z "$failure_reason" ]; then
reviews_file="$REVIEW_CONTEXT_DIR/pr_reviews_after_codex.json"
reviews_api_ok=false
review_verified=false
for attempt in 1 2 3 4 5 6; do
if gh api --paginate --slurp "repos/${REPO}/pulls/${PR_NUMBER}/reviews" > "$reviews_file"; then
reviews_api_ok=true
if jq -e --arg started_at "$review_started_at" --arg head_sha "$HEAD_SHA" '
(add // [])
| map(select((.submitted_at // "") >= $started_at and (.commit_id // "") == $head_sha))
| length > 0
' "$reviews_file" >/dev/null; then
review_verified=true
break
fi
fi
sleep 5
done
if [ "$review_verified" != "true" ] && [ "$reviews_api_ok" != "true" ]; then
failure_reason="Codex completed, but the workflow could not verify pull request reviews through GitHub API."
elif [ "$review_verified" != "true" ]; then
failure_reason="Codex completed, but no new pull request review was submitted for the current head SHA."
fi
fi
if [ -n "$failure_reason" ]; then
{
echo "failure_reason<<EOF"
printf '%s\n' "$failure_reason"
echo "EOF"
} >> "$GITHUB_OUTPUT"
exit 1
fi
- name: Record Codex usage limit
id: usage_limit_record
if: ${{ always() && steps.review.outputs.usage_limit_retry_after_epoch != '' }}
timeout-minutes: 5
env:
OSS_AK: ${{ secrets.OSS_AK }}
OSS_SK: ${{ secrets.OSS_SK }}
OSS_ENDPOINT: oss-cn-hongkong.aliyuncs.com
RETRY_AFTER_EPOCH: ${{ steps.review.outputs.usage_limit_retry_after_epoch }}
run: |
context_file="$(mktemp "$RUNNER_TEMP/codex-auth-context.XXXXXX")"
jq -n \
--argjson retry_after_epoch "$RETRY_AFTER_EPOCH" \
'{version: 1, state: "usage_limited", retry_after_epoch: $retry_after_epoch}' \
> "$context_file"
ossutil -i "$OSS_AK" -k "$OSS_SK" -e "$OSS_ENDPOINT" \
cp -f "$context_file" "${CODEX_AUTH_OSS_OBJECT}.context"
retry_at="$(date -u -d "@$RETRY_AFTER_EPOCH" +%Y-%m-%dT%H:%M:%SZ)"
echo "Recorded usage limit for ${CODEX_AUTH_OSS_OBJECT##*/} until $retry_at."
- name: Comment PR on review failure
if: ${{ always() && (steps.review_context.outcome != 'success' || steps.review.outcome != 'success') }}
timeout-minutes: 2
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
AUTH_FAILURE_REASON: ${{ steps.auth.outputs.failure_reason }}
USAGE_LIMIT_RECORD_OUTCOME: ${{ steps.usage_limit_record.outcome }}
USAGE_LIMIT_RETRY_AFTER_EPOCH: ${{ steps.review.outputs.usage_limit_retry_after_epoch }}
REVIEW_CONTEXT_OUTCOME: ${{ steps.review_context.outcome }}
REVIEW_FAILURE_REASON: ${{ steps.review.outputs.failure_reason }}
REVIEW_OUTCOME: ${{ steps.review.outcome }}
PR_NUMBER: ${{ steps.review_inputs.outputs.pr_number }}
RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
run: |
recovery_msg="Please inspect the workflow logs and rerun the review after the underlying issue is resolved."
if [ -n "$AUTH_FAILURE_REASON" ]; then
error_msg="$AUTH_FAILURE_REASON"
recovery_msg="Please trigger /review again after that time."
elif [ -n "$USAGE_LIMIT_RETRY_AFTER_EPOCH" ] && \
[ "$USAGE_LIMIT_RECORD_OUTCOME" = "success" ]; then
retry_at="$(date -u -d "@$USAGE_LIMIT_RETRY_AFTER_EPOCH" +%Y-%m-%dT%H:%M:%SZ)"
error_msg="${REVIEW_FAILURE_REASON:-The selected Codex account reached its usage limit.}"
recovery_msg="The selected account is excluded until $retry_at. Please trigger /review again; another configured account may be available."
elif [ -n "$USAGE_LIMIT_RETRY_AFTER_EPOCH" ]; then
error_msg="Codex reached its usage limit, but the workflow failed to record the account context."
recovery_msg="Please inspect the workflow logs and trigger /review again after the recording problem is resolved."
elif [ "$REVIEW_CONTEXT_OUTCOME" != "success" ]; then
error_msg="Review context preparation failed before Codex ran; inspect the 'Prepare authoritative PR context and required AGENTS guides' step."
else
error_msg="${REVIEW_FAILURE_REASON:-Review step was $REVIEW_OUTCOME (possibly timeout or cancelled)}"
fi
gh pr comment "$PR_NUMBER" --body "$(cat <<EOF
Codex automated review failed and did not complete.
Error: ${error_msg}
Workflow run: ${RUN_URL}
${recovery_msg}
EOF
)"
- name: Fail workflow if review failed
if: ${{ always() && (steps.review_context.outcome != 'success' || steps.review.outcome != 'success') }}
timeout-minutes: 1
env:
AUTH_FAILURE_REASON: ${{ steps.auth.outputs.failure_reason }}
REVIEW_CONTEXT_OUTCOME: ${{ steps.review_context.outcome }}
REVIEW_FAILURE_REASON: ${{ steps.review.outputs.failure_reason }}
REVIEW_OUTCOME: ${{ steps.review.outcome }}
run: |
if [ -n "$AUTH_FAILURE_REASON" ]; then
error_msg="$AUTH_FAILURE_REASON"
elif [ "$REVIEW_CONTEXT_OUTCOME" != "success" ]; then
error_msg="Review context preparation failed before Codex ran; inspect the 'Prepare authoritative PR context and required AGENTS guides' step."
else
error_msg="${REVIEW_FAILURE_REASON:-Review step was $REVIEW_OUTCOME (possibly timeout or cancelled)}"
fi
echo "Codex automated review failed: ${error_msg}"
exit 1
- name: Sync Code Review check for current head
if: >-
${{
always() &&
steps.review_inputs.outcome == 'success' &&
steps.review_inputs.outputs.manage_status == 'true'
}}
timeout-minutes: 2
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
HEAD_SHA: ${{ steps.review_inputs.outputs.head_sha }}
JOB_STATUS: ${{ job.status }}
REPO: ${{ github.repository }}
REVIEW_CONTEXT_OUTCOME: ${{ steps.review_context.outcome }}
REVIEW_OUTCOME: ${{ steps.review.outcome }}
run: |
state="pending"
summary="Trigger /review to start automated review for ${HEAD_SHA}."
if [ "$JOB_STATUS" = "success" ] && \
[ "$REVIEW_CONTEXT_OUTCOME" = "success" ] && \
[ "$REVIEW_OUTCOME" = "success" ]; then
state="success"
summary="Automated review was triggered for ${HEAD_SHA}."
fi
gh api "repos/${REPO}/statuses/${HEAD_SHA}" \
-X POST \
-f state="${state}" \
-f context='code-review' \
-f description="${summary}" \
-f target_url="${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
- name: Record review I/O to Litefuse
if: ${{ always() }}
continue-on-error: true
timeout-minutes: 5
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
LANGFUSE_PUBLIC_KEY: ${{ secrets.LANGFUSE_PK }}
LANGFUSE_SECRET_KEY: ${{ secrets.LANGFUSE_SK }}
REPO: ${{ github.repository }}
PR_NUMBER: ${{ steps.review_inputs.outputs.pr_number }}
HEAD_SHA: ${{ steps.review_inputs.outputs.head_sha }}
BASE_SHA: ${{ steps.review_inputs.outputs.base_sha }}
HELPER_REF: ${{ github.workflow_sha || github.sha }}
run: |
if [ ! -s "$REVIEW_CONTEXT_DIR/codex_goal_prompt.txt" ] || [ ! -s "$REVIEW_CONTEXT_DIR/codex-events.jsonl" ]; then
echo "Goal prompt or Codex JSONL event stream is missing; skipping Litefuse I/O recording."
exit 0
fi
helper="$RUNNER_TEMP/emit_litefuse_otel_io.py"
gh api \
-H "Accept: application/vnd.github.raw" \
"repos/${REPO}/contents/.github/scripts/emit_litefuse_otel_io.py?ref=${HELPER_REF}" \
> "$helper"
chmod 700 "$helper"
python3 "$helper" \
--input-file "$REVIEW_CONTEXT_DIR/codex_goal_prompt.txt" \
--events-file "$REVIEW_CONTEXT_DIR/codex-events.jsonl" \
--output-file "$REVIEW_CONTEXT_DIR/codex-final-message.txt" \
--trace-name "doris-ai-review" \
--subagent-trace-name "doris-ai-review-subagent" \
--subagent-sessions-dir "$CODEX_HOME/sessions" \
--session-id "$GITHUB_RUN_ID" \
--repository "$REPO" \
--workflow "$GITHUB_WORKFLOW" \
--run-id "$GITHUB_RUN_ID" \
--pr-number "$PR_NUMBER" \
--head-sha "$HEAD_SHA" \
--base-sha "$BASE_SHA" \
--model "gpt-5.6-sol" \
--reasoning-effort "xhigh" \
--environment "github-actions" \
--max-payload-bytes 4000000 \
--min-observations 4 \
--min-step-observations 2 \
--verify-attempts 24 \
--verify-sleep-seconds 5 \
--verify
- name: Sync Codex sessions back to OSS
if: ${{ always() }}
continue-on-error: true
timeout-minutes: 5
run: |
if [ ! -d "$CODEX_HOME/sessions" ]; then
echo "No Codex sessions directory found; skipping session sync."
exit 0
fi
uploaded=0
skipped=0
while IFS= read -r -d '' session_file; do
rel="${session_file#"$CODEX_HOME/sessions/"}"
remote="${OSS_CODEX_SESSION_PREFIX%/}/$rel"
if ossutil -i "$OSS_AK" -k "$OSS_SK" -e "$OSS_ENDPOINT" stat "$remote" >/dev/null 2>&1; then
skipped=$((skipped + 1))
continue
fi
ossutil -i "$OSS_AK" -k "$OSS_SK" -e "$OSS_ENDPOINT" cp -f "$session_file" "$remote"
uploaded=$((uploaded + 1))
done < <(find "$CODEX_HOME/sessions" -type f -name '*.jsonl' -print0)
echo "Uploaded $uploaded new Codex session file(s); skipped $skipped existing file(s)."
env:
OSS_AK: ${{ secrets.OSS_AK }}
OSS_SK: ${{ secrets.OSS_SK }}
OSS_ENDPOINT: oss-cn-hongkong.aliyuncs.com
OSS_CODEX_SESSION_PREFIX: oss://doris-community-ci/session
- name: Sync refreshed Codex auth back to OSS
if: ${{ always() && steps.auth.outcome == 'success' }}
timeout-minutes: 8
run: |
set -o pipefail
if ! jq -e '
.auth_mode == "chatgpt"
and (.tokens.access_token | type == "string" and length > 0)
and (.tokens.refresh_token | type == "string" and length > 0)
' "$CODEX_HOME/auth.json" >/dev/null; then
echo "::error::Refreshed Codex auth is invalid; refusing OSS auth sync."
exit 1
fi
original_hash="$(<"$RUNNER_TEMP/codex-auth-original.sha256")"
local_hash="$(sha256sum "$CODEX_HOME/auth.json" | awk '{print $1}')"
if [ "$local_hash" = "$original_hash" ]; then
echo "Codex auth was not refreshed; skipping OSS auth sync."
exit 0
fi
umask 077
remote_auth="$(mktemp "$RUNNER_TEMP/codex-auth-current.XXXXXX")"
trap 'rm -f "$remote_auth" "${remote_auth}.temp"' EXIT
if ! ossutil -i "$OSS_AK" -k "$OSS_SK" -e "$OSS_ENDPOINT" \
--retry-times=3 --connect-timeout=10 --read-timeout=30 \
cp -f "$CODEX_AUTH_OSS_OBJECT" "$remote_auth"; then
echo "::error::Could not verify the current OSS auth after 3 attempts."
exit 1
fi
remote_hash="$(sha256sum "$remote_auth" | awk '{print $1}')"
if [ "$remote_hash" != "$original_hash" ]; then
echo "::warning::OSS auth changed during this job; skipping stale auth sync."