Skip to content

Commit a7aa6ac

Browse files
Pigbibicodex
andcommitted
ci: keep codex review runner compatibility stub
Co-Authored-By: Codex <noreply@openai.com>
1 parent 50930db commit a7aa6ac

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#!/usr/bin/env python3
2+
"""Deprecated compatibility entrypoint for the centralized Codex PR review workflow.
3+
4+
This repository now delegates PR review to
5+
QuantStrategyLab/AIAuditBridge/.github/workflows/codex_pr_review.yml.
6+
The local runner is intentionally kept as a tiny stub so old links fail clearly
7+
without reintroducing copied review logic.
8+
"""
9+
10+
from __future__ import annotations
11+
12+
import sys
13+
14+
15+
def main() -> int:
16+
print(
17+
"Local Codex PR review runner has moved to "
18+
"QuantStrategyLab/AIAuditBridge reusable workflow.",
19+
file=sys.stderr,
20+
)
21+
return 2
22+
23+
24+
if __name__ == "__main__":
25+
raise SystemExit(main())

0 commit comments

Comments
 (0)