-
Notifications
You must be signed in to change notification settings - Fork 11
[CDX-265] Add CC workflow #418
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
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 a centralized Claude Code review workflow by replacing the existing local workflow configuration with a reference to a shared reusable workflow, and adds comprehensive Claude command documentation for code reviews.
- Replaces local Claude workflow implementation with a reusable workflow from a shared repository
- Adds detailed code review command documentation with standards and guidelines
- Removes the old standalone Claude Code Review workflow configuration
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
.github/workflows/claude-review.yml |
New workflow file that references a shared reusable workflow for Claude PR reviews |
.github/workflows/claude-code-review.yml |
Deleted the previous standalone Claude Code Review workflow configuration |
.claude/commands/review.md |
New comprehensive documentation for the /review command including standards, guidelines, and output format |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| pull_request: | ||
| types: [opened, ready_for_review, synchronize] | ||
|
|
||
| jobs: | ||
| review: | ||
| uses: Constructor-io/shared-claude-code-resources-public/.github/workflows/claude-code-review.yml@main | ||
| secrets: inherit |
Copilot
AI
Dec 4, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The workflow file has incorrect indentation. The name: field should start at column 0 (no leading spaces). Remove the leading spaces from all lines in this file.
| pull_request: | |
| types: [opened, ready_for_review, synchronize] | |
| jobs: | |
| review: | |
| uses: Constructor-io/shared-claude-code-resources-public/.github/workflows/claude-code-review.yml@main | |
| secrets: inherit | |
| pull_request: | |
| types: [opened, ready_for_review, synchronize] | |
| jobs: | |
| review: | |
| uses: Constructor-io/shared-claude-code-resources-public/.github/workflows/claude-code-review.yml@main | |
| secrets: inherit |
Code Review Results✅ StrengthsClean refactoring that consolidates the Claude Code review workflow into a reusable shared workflow and adds comprehensive review guidelines documentation. 🚨 Critical IssuesNone found.
|
No description provided.