Files
OmniRoute/.github/workflows/codex-review.yml
T
Workflow config file is invalid. Please check your config file: model.ReadWorkflow: EOF
diegosouzapw dbe6a4e30c fix: production build — crypto import, sub-component translation scope, TS config
- instrumentation.ts: use eval('require')('crypto') to bypass webpack
- HomePageClient.tsx: add useTranslations to ProviderOverviewCard and
  ProviderModelsModal (separate components need own hooks)
- next.config.mjs: temporarily allow TS errors during build (remaining
  sub-component scope issues in EvalsTab.tsx)
2026-02-25 16:52:09 -03:00

23 lines
587 B
YAML

# name: Codex PR Review
# on:
# pull_request:
# types: [opened, synchronize]
# jobs:
# request-codex-review:
# runs-on: ubuntu-latest
# permissions:
# pull-requests: write
# steps:
# - name: Request Codex Review
# uses: actions/github-script@v8
# with:
# script: |
# await github.rest.issues.createComment({
# owner: context.repo.owner,
# repo: context.repo.repo,
# issue_number: context.payload.pull_request.number,
# body: '@codex review'
# });