Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/ai-code-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: AI Code Review

on:
pull_request:
types: [opened, synchronize, reopened]

jobs:
review:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
issues: write

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Run AI Code Review
uses: Daltonganger/AI-Code-Review@v1.4.4
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔥 The Roast: Your PR description says v1.4.0 but your workflow says v1.4.4. That's like telling your boss you deployed v1.0 when you actually shipped v1.4 — technically both are wrong, just in different directions.

🩹 The Fix: Either update the PR description to match the actual version used here, or update the workflow to use the version you documented. Pick a lane.

📏 Severity: warning

with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
AI_PROVIDER: 'codex'
CODEX_API_KEY: ${{ secrets.CODEX_API_KEY }}
CODEX_API_MODEL: 'gpt-5.4'
CODEX_API_BASE_URL: 'https://codex.2631.eu/v1'
REVIEW_LANGUAGE: 'en'
Loading