-
Notifications
You must be signed in to change notification settings - Fork 0
chore: migrate audit bridge to AIAuditBridge #102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -35,7 +35,7 @@ jobs: | |
| GCS_BUCKET: ${{ vars.GCS_BUCKET }} | ||
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true" | ||
| CODEX_AUDIT_ENABLED: ${{ vars.CODEX_AUDIT_ENABLED || 'true' }} | ||
| CODEX_AUDIT_BRIDGE_REPOSITORY: ${{ vars.CODEX_AUDIT_BRIDGE_REPOSITORY || 'QuantStrategyLab/CodexAuditBridge' }} | ||
| CODEX_AUDIT_BRIDGE_REPOSITORY: ${{ vars.CODEX_AUDIT_BRIDGE_REPOSITORY || 'QuantStrategyLab/AIAuditBridge' }} | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
After this default changes the dispatch target to Useful? React with 👍 / 👎. |
||
| CODEX_AUDIT_BRIDGE_REF: ${{ vars.CODEX_AUDIT_BRIDGE_REF || 'main' }} | ||
| CODEX_AUDIT_MODE: ${{ vars.CODEX_AUDIT_MODE || 'review_and_fix' }} | ||
| CODEX_AUDIT_PROVIDER: ${{ vars.CODEX_AUDIT_PROVIDER || 'auto' }} | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With this new default, monthly publishes dispatch to
QuantStrategyLab/AIAuditBridge, but the earlieractions/create-github-app-tokenstep is still hard-coded to request a token forCodexAuditBridge, and the dispatch code prefersAPP_TOKENoverCODEX_AUDIT_DISPATCH_TOKEN. In environments whereCROSS_REPO_GITHUB_APP_*credentials are configured, the workflow will therefore use an app token scoped to the old bridge repo and fail the dispatch to AIAuditBridge instead of falling back; update the token repository list or derive it fromCODEX_AUDIT_BRIDGE_REPOSITORYas part of this default change.Useful? React with 👍 / 👎.