Skip to content

ci: use centralized Claude AI code review - #19

Merged
BMVenly merged 1 commit into
developfrom
chore/central-ai-review
Jun 18, 2026
Merged

ci: use centralized Claude AI code review#19
BMVenly merged 1 commit into
developfrom
chore/central-ai-review

Conversation

@BMVenly

@BMVenly BMVenly commented Jun 18, 2026

Copy link
Copy Markdown
Contributor

Wires this repo to the centrally-maintained Claude AI code review engine in Venly/venly-github-workflows (reusable workflows pinned to @v1).

  • claude-code-review.yml → automated PR review (project_type: generic, block_on_critical: true)
  • claude.yml@claude mention bot

Review logic is no longer duplicated per repo; improvements ship from one place.

Delegate PR review and the @claude mention bot to the centrally-maintained
reusable workflows in Venly/venly-github-workflows (project_type: generic).
Review logic now lives in one place and is updated centrally.
Copilot AI review requested due to automatic review settings June 18, 2026 14:05

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Pull request overview

This PR adds two GitHub Actions workflows that delegate PR reviews and @claude-mention handling to centrally maintained reusable workflows in Venly/venly-github-workflows@v1, removing per-repo duplication.

Changes:

  • Add a Claude Code Review workflow that calls the centralized AI review reusable workflow on PR events.
  • Add a Claude Code workflow that calls the centralized @claude mention-bot reusable workflow on comment/review/issue events.

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.

File Description
.github/workflows/claude.yml Adds a mention-triggered workflow that delegates to the centralized @claude bot.
.github/workflows/claude-code-review.yml Adds a PR-triggered workflow that delegates to the centralized automated code review engine.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines +26 to +35
claude:
# Only invoke the engine on an actual @claude mention — avoids spawning a
# skipped workflow run on every comment/issue event.
if: |
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) ||
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) ||
(github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) ||
(github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude')))
uses: Venly/venly-github-workflows/.github/workflows/claude.yml@v1
secrets: inherit
@BMVenly
BMVenly merged commit 7d33e65 into develop Jun 18, 2026
5 checks passed
@BMVenly
BMVenly deleted the chore/central-ai-review branch June 18, 2026 14:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants