{"id":50492436,"url":"https://github.com/khovan123/codex-pr-review-bot","last_synced_at":"2026-06-02T04:01:18.177Z","repository":{"id":359515697,"uuid":"1246393912","full_name":"khovan123/codex-pr-review-bot","owner":"khovan123","description":" A bring-your-own-key GitHub Action that reviews pull requests with OpenAI and posts concise Codex-style findings,   tests, and residual risk comments using the repository owner’s API key.","archived":false,"fork":false,"pushed_at":"2026-05-22T07:28:39.000Z","size":11,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-05-22T15:30:17.986Z","etag":null,"topics":["code-review","continues-integration","github-actions","github-bot","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/khovan123.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-22T06:42:56.000Z","updated_at":"2026-05-22T07:37:33.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/khovan123/codex-pr-review-bot","commit_stats":null,"previous_names":["khovan123/codex-pr-review-bot"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/khovan123/codex-pr-review-bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khovan123%2Fcodex-pr-review-bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khovan123%2Fcodex-pr-review-bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khovan123%2Fcodex-pr-review-bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khovan123%2Fcodex-pr-review-bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/khovan123","download_url":"https://codeload.github.com/khovan123/codex-pr-review-bot/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khovan123%2Fcodex-pr-review-bot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33805341,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-02T02:00:07.132Z","response_time":109,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["code-review","continues-integration","github-actions","github-bot","typescript"],"created_at":"2026-06-02T04:01:17.490Z","updated_at":"2026-06-02T04:01:18.160Z","avatar_url":"https://github.com/khovan123.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Codex PR Review Bot\n\nBYOK GitHub Action that posts Codex-style pull request reviews. Each GitHub user or organization supplies their own `OPENAI_API_KEY`; this action does not use the publisher's key.\n\n## Usage\n\nAdd a repository or organization secret named `OPENAI_API_KEY`.\n\nCreate `.github/workflows/codex-review.yml` in the repository that wants reviews:\n\n```yaml\nname: Codex PR Review\n\non:\n  pull_request:\n    types: [opened, synchronize, reopened, ready_for_review]\n\npermissions:\n  contents: read\n  pull-requests: write\n\njobs:\n  review:\n    if: ${{ !github.event.pull_request.draft }}\n    runs-on: ubuntu-latest\n    steps:\n      - uses: khovan123/codex-pr-review-bot@v1\n        with:\n          openai_api_key: ${{ secrets.OPENAI_API_KEY }}\n          github_token: ${{ github.token }}\n```\n\n## Inputs\n\n| Input | Required | Default | Description |\n| --- | --- | --- | --- |\n| `openai_api_key` | Yes |  | User-owned OpenAI API key, usually `${{ secrets.OPENAI_API_KEY }}`. |\n| `github_token` | Yes |  | Token used to read PR files and post the review, usually `${{ github.token }}`. |\n| `model` | No | `gpt-5` | OpenAI model used for the review. |\n| `max_files` | No | `40` | Maximum changed files sent to the model. |\n| `max_patch_chars` | No | `60000` | Maximum patch characters sent to the model. |\n\n## Security Model\n\n- The action requires the repository user to provide `OPENAI_API_KEY`.\n- The publisher does not receive or store user keys.\n- Pull request patch text is sent to OpenAI from the user's GitHub Actions run.\n- Use GitHub organization secrets if many repositories should share the same key.\n\n## Publishing\n\n1. Create a public GitHub repository, for example `khovan123/codex-pr-review-bot`.\n2. Push this project to the repository.\n3. Create a release tag such as `v1`.\n4. Users can then reference the action with `uses: khovan123/codex-pr-review-bot@v1`.\n\nThe action is public once the GitHub repository is public. GitHub Marketplace listing is optional and can be added from the repository's Actions publishing settings.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhovan123%2Fcodex-pr-review-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkhovan123%2Fcodex-pr-review-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhovan123%2Fcodex-pr-review-bot/lists"}