We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50930db commit a7aa6acCopy full SHA for a7aa6ac
1 file changed
python/scripts/run_codex_pr_review.py
@@ -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