Skip to content

Commit fde5343

Browse files
authored
Merge pull request #24 from QuantStrategyLab/codex/migrate-ai-repo-slugs
chore: migrate audit bridge to AIAuditBridge
2 parents 0c9a210 + 248b4ce commit fde5343

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/dispatch_shadow_signal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-latest
3737
timeout-minutes: 30
3838
env:
39-
BRIDGE_REPOSITORY: ${{ vars.CODEX_AUDIT_BRIDGE_REPOSITORY || 'QuantStrategyLab/CodexAuditBridge' }}
39+
BRIDGE_REPOSITORY: ${{ vars.CODEX_AUDIT_BRIDGE_REPOSITORY || 'QuantStrategyLab/AIAuditBridge' }}
4040
BRIDGE_REF: ${{ vars.CODEX_AUDIT_BRIDGE_REF || 'main' }}
4141
BRIDGE_TASK: long_horizon_signal_shadow
4242
BRIDGE_PROVIDER: ${{ github.event.inputs.provider || 'auto' }}

scripts/post_shadow_signal_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def parse_args() -> argparse.Namespace:
173173
parser.add_argument("--repo", required=True)
174174
parser.add_argument("--source-ref", default="main")
175175
parser.add_argument("--provider", default="auto")
176-
parser.add_argument("--bridge-repository", default="QuantStrategyLab/CodexAuditBridge")
176+
parser.add_argument("--bridge-repository", default="QuantStrategyLab/AIAuditBridge")
177177
parser.add_argument("--as-of-date")
178178
parser.add_argument("--context-file", help="Optional JSON context bundle to embed in the issue body")
179179
parser.add_argument("--label", default=DEFAULT_LABEL)

tests/test_dispatch_shadow_signal_workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ def test_dispatch_shadow_signal_pins_bridge_ref_via_variable() -> None:
88

99
assert "BRIDGE_REF: ${{ vars.CODEX_AUDIT_BRIDGE_REF || 'main' }}" in workflow
1010
assert '"ref": os.environ["BRIDGE_REF"]' in workflow
11-
assert "QuantStrategyLab/CodexAuditBridge" in workflow
11+
assert "QuantStrategyLab/AIAuditBridge" in workflow

tests/test_post_shadow_signal_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def test_build_issue_body_marks_notification_and_shadow_boundary() -> None:
1010
as_of_date="2026-05-29",
1111
source_ref="main",
1212
provider="auto",
13-
bridge_repository="QuantStrategyLab/CodexAuditBridge",
13+
bridge_repository="QuantStrategyLab/AIAuditBridge",
1414
context_bundle={"as_of": "2026-05-29", "price_context": {"QQQ": {"trend": "above_200d"}}},
1515
)
1616

0 commit comments

Comments
 (0)