ci: add Claude/Codex/Pi AI reviewers on PR ready + commit#1383
Merged
rubenfiszel merged 1 commit intomainfrom May 4, 2026
Merged
ci: add Claude/Codex/Pi AI reviewers on PR ready + commit#1383rubenfiszel merged 1 commit intomainfrom
rubenfiszel merged 1 commit intomainfrom
Conversation
Adds three AI reviewer workflows mirroring the setup in the windmill repo: - Claude (anthropics/claude-code-action) - Codex (OpenAI gpt-5.5) - Pi (DeepSeek) Each fires on PR opened, ready_for_review, and synchronize (every new commit), and gates by windmill-labs org membership via the reusable check-org-membership workflow already used by claude.yml. Also adds a docs-tailored shared review prompt that focuses on AGENTS.md / writing_style_guide.md compliance, broken links/anchors, frontmatter, sidebar registration, and JSON-LD instead of the backend / EE concerns from the windmill repo. A pr-review-commands workflow lets reviewers re-trigger any of the three via /review, /codex, /pi, or /claude comments.
Deploying windmilldocs with
|
| Latest commit: |
ea79163
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://a49f1e3f.windmilldocs.pages.dev |
| Branch Preview URL: | https://ai-pr-reviewers.windmilldocs.pages.dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Mirrors the AI-reviewer setup that runs on the windmill repo. Adds three independent reviewers that each fire on
pull_request: [opened, ready_for_review, synchronize](i.e. on mark-as-ready and on every new commit):pr-ready-review.yml) — anthropics/claude-code-action, posts inline comments + a top-level summary.codex-pr-review.yml) — OpenAI gpt-5.5, posts a single## Codex Reviewcomment.pi-pr-review.yml) — DeepSeek-backed, posts a single## Pi Reviewcomment.A fourth workflow (
pr-review-commands.yml) lets reviewers re-trigger any of them by commenting/review,/claude,/codex, or/pion the PR.All four gate on windmill-labs org membership by reusing the existing
windmill-labs/windmill/.github/workflows/check-org-membership.yml@mainworkflow (the same one already used byclaude.ymlhere), so no new shared-workflow file is needed.Docs-specific review prompt
.github/review-prompt-shared.mdis rewritten for this repo: it focuses onAGENTS.md/writing_style_guide.mdcompliance, broken internal links/anchors, frontmatterdescriptionpresence and length, sidebar registration, EE-tier mention//pricinglinking, JSON-LD on non-doc pages, and the style rules (sentence case headings, no em dashes, no bold misuse, etc.) instead of the backend/Rust/EE concerns from the windmill repo.Required secrets
The workflows skip cleanly if their respective secret is not set, so the PR is safe to merge before secrets land:
CLAUDE_CODE_OAUTH_TOKEN(already configured forclaude.yml)ORG_ACCESS_TOKEN(already configured)CODEX_AUTH_JSON(optional — Codex review skips if absent)DEEPSEEK_API_KEY(optional — Pi review skips if absent)Test plan
synchronize./reviewand confirm all three reviewers re-run./claude(or/codex,/pi) and confirm only the targeted one runs.🤖 Generated with Claude Code