Skip to content

ci: use centralized Claude AI code review - #18

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

ci: use centralized Claude AI code review#18
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:04

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 Claude mention-handling and automated PR reviews to centrally maintained reusable workflows in Venly/venly-github-workflows@v1, aiming to remove per-repo duplication.

Changes:

  • Added a Claude Code workflow that triggers on issue/PR comment and review events and calls the centralized claude.yml reusable workflow.
  • Added a Claude Code Review workflow that triggers on PR lifecycle events and calls the centralized claude-code-review.yml reusable workflow with project_type: generic and block_on_critical: true.

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 4 comments.

File Description
.github/workflows/claude.yml Adds a thin caller workflow for an @claude mention bot, including permissions and an if gate.
.github/workflows/claude-code-review.yml Adds a thin caller workflow that runs centralized automated PR review with configured inputs.

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

Comment on lines +27 to +28
# Only invoke the engine on an actual @claude mention — avoids spawning a
# skipped workflow run on every comment/issue event.
Comment on lines +29 to +33
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')))
(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
Comment on lines +18 to +20
uses: Venly/venly-github-workflows/.github/workflows/claude-code-review.yml@v1
secrets: inherit
with:
@BMVenly
BMVenly merged commit 7cd90bd into develop Jun 18, 2026
11 checks passed
@BMVenly
BMVenly deleted the chore/central-ai-review branch June 18, 2026 14:17
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