-
Notifications
You must be signed in to change notification settings - Fork 13
Update Claude Code GitHub Workflow #235
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
📝 WalkthroughWalkthroughTwo GitHub workflow files are updated: the code review workflow now includes additional PR event triggers and replaces natural language prompts with plugin-based configuration, while the main workflow updates documentation and clarifies optional parameters. Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~8 minutes Poem
🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
The claude-code-action@v1 blocks bot actors by default for security. Added 'codefactor-io[bot]' to allowed_bots parameter to permit automated CodeFactor commits to trigger the code review workflow. This resolves the "Workflow initiated by non-human actor" error that occurred when CodeFactor made automated commits to PRs. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
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.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In @.github/workflows/claude.yml:
- Around line 46-49: Update the outdated Claude CLI link in the workflow
comment: replace the `https://code.claude.com/docs/en/cli-reference` URL with
the new official CLI reference
`https://docs.claude.com/en/docs/claude-code/cli-usage` in the claude_args
comment block (the commented lines showing "claude_args" and the two example
URLs) so the documentation link points to the current Claude Code CLI docs.
🧹 Nitpick comments (1)
.github/workflows/claude-code-review.yml (1)
39-45: Pin plugin marketplace to a specific git ref to reduce drift.
Theplugin_marketplacesURL supports git refs; append a tag or commit hash (e.g.,https://github.com/anthropics/claude-code.git#v1.0.0) to lock the plugin catalog to a stable version.
| # Optional: Add claude_args to customize behavior and configuration | ||
| # See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md | ||
| # or https://docs.anthropic.com/en/docs/claude-code/sdk#command-line for available options | ||
| claude_args: '--model sonnet --allowed-tools Bash(gh pr:*)' | ||
| # or https://code.claude.com/docs/en/cli-reference for available options | ||
| # claude_args: '--allowed-tools Bash(gh pr:*)' |
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.
🧩 Analysis chain
🌐 Web query:
claude-code-action documentation usage.md github anthropics
💡 Result:
The official Anthropic Claude Code GitHub Action is anthropics/claude-code-action on GitHub, and its “Usage Guide” lives in the repo at docs/usage.md (same documentation set linked from the README / Marketplace listing). [2][3]
Key docs/usage.md / usage concepts (also reflected in Anthropic’s docs page):
- Add the action to a workflow and provide at least
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}. [1] - Optionally pass:
prompt(free-text instructions or slash commands like/review) [1]claude_args(CLI passthrough, e.g.--max-turns 5,--model ...) [1]
Minimal example (from Anthropic docs):
- uses: anthropics/claude-code-action@v1
with:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
prompt: "/review"
claude_args: "--max-turns 5"[1]
Sources: Anthropic documentation for Claude Code GitHub Actions [1], the anthropics/claude-code-action repo README (which links to the Usage Guide) [2], and the GitHub Marketplace listing for the official action (which links the same docs set) [3].
References:
[1] https://docs.anthropic.com/en/docs/claude-code/github-actions
[2] https://github.com/anthropics/claude-code-action
[3] https://github.com/marketplace/actions/claude-code-action-official
🌐 Web query:
claude-code-action claude_args configuration options
💡 Result:
claude_args in anthropics/claude-code-action@v1 is a passthrough string: you can provide any Claude Code CLI flags (single line or YAML multiline). Example: claude_args: "--max-turns 5 --model … --mcp-config …". [1]
Commonly-used claude_args flags (from the GitHub Actions docs):
--max-turns <n>: limit conversation turns (docs note default is 10) [1]--model <model-id>: select the model [1]--mcp-config <path>: load an MCP config file [1]--allowed-tools <comma-separated>: allow specific tools [1]--debug: enable debug output [1]
Notes on configuration shape in v1:
- v1 unified “what to do” into
prompt, and all CLI tuning intoclaude_args(e.g., model, max turns, tools, MCP config, system-prompt related settings). [1][2]
🌐 Web query:
code.claude.com CLI reference documentation
💡 Result:
The CLI reference for Claude Code (what used to be linked from code.claude.com) is now published on Claude Docs here: https://docs.claude.com/en/docs/claude-code/cli-usage. [1]
Related (non-interactive / automation “headless” usage, incl. -p/--print, --output-format, --resume): https://docs.claude.com/en/docs/claude-code/sdk/sdk-headless. [2]
Update the code.claude.com documentation link to point to the current location.
The GitHub link (https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md) is current. However, the second link (https://code.claude.com/docs/en/cli-reference) is outdated; it should be updated to https://docs.claude.com/en/docs/claude-code/cli-usage where the official Claude Code CLI reference is now published.
🤖 Prompt for AI Agents
In @.github/workflows/claude.yml around lines 46 - 49, Update the outdated
Claude CLI link in the workflow comment: replace the
`https://code.claude.com/docs/en/cli-reference` URL with the new official CLI
reference `https://docs.claude.com/en/docs/claude-code/cli-usage` in the
claude_args comment block (the commented lines showing "claude_args" and the two
example URLs) so the documentation link points to the current Claude Code CLI
docs.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #235 +/- ##
==========================================
- Coverage 14.33% 14.27% -0.06%
==========================================
Files 67 67
Lines 7179 7179
==========================================
- Hits 1029 1025 -4
- Misses 6150 6154 +4
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
* "Update Claude PR Assistant workflow" * "Update Claude Code Review workflow" * fix: allow CodeFactor bot to trigger Claude Code Review workflow The claude-code-action@v1 blocks bot actors by default for security. Added 'codefactor-io[bot]' to allowed_bots parameter to permit automated CodeFactor commits to trigger the code review workflow. This resolves the "Workflow initiated by non-human actor" error that occurred when CodeFactor made automated commits to PRs. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Correct Claude Code Review workflow plugin configuration The Claude Code Review workflow was crashing with SDK errors due to incorrect plugin configuration syntax introduced in commit ebf913f. - Plugin marketplace format was incorrect: used full git URL instead of GitHub short format - Plugin reference format was wrong: `code-review@claude-code-plugins` instead of `code-review` - Prompt used CLI command syntax instead of natural language instructions - Changed `plugin_marketplaces` from `https://github.com/anthropics/claude-code.git` to `anthropics/claude-code` - Changed `plugins` from `code-review@claude-code-plugins` to `code-review` - Replaced CLI command prompt with descriptive natural language instructions - Kept existing `allowed_bots: 'codefactor-io[bot]'` configuration - GitHub Actions workflow should complete without exit code 1 - No SDK crash errors in logs - Claude successfully posts review comments on PRs - [Claude Code Plugins Documentation](https://code.claude.com/docs/en/plugins) - [Discover and install prebuilt plugins](https://code.claude.com/docs/en/discover-plugins) - [Code-Review Plugin README](https://github.com/anthropics/claude-code/blob/main/plugins/code-review/README.md) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Use full Git URL format for Claude Code plugin marketplace Changes plugin_marketplaces from short format 'anthropics/claude-code' to full Git URL 'https://github.com/anthropics/claude-code.git' to resolve "Invalid marketplace URL format" error in GitHub Actions workflow. The claude-code-action requires full Git URLs ending in .git for the plugin_marketplaces parameter as specified in its action.yml. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Add required permissions to Claude Code Review workflow Added additional_permissions to allow Claude bot to: - Run GitHub CLI commands (gh pr view, etc.) - Execute Swift build and test commands - Use the code-review skill This resolves permission denials that prevented the code review workflow from functioning properly. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Remove Swift build/test permissions from code review workflow Removed Swift build and test permissions since the Ubuntu runner doesn't have Swift installed. Code review focuses on static analysis of code changes, while build/test verification is handled by the main CI workflow with proper Swift containers. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Use claude_args with --allowedTools instead of additional_permissions The additional_permissions parameter is only for GitHub API permissions (like actions: read), not Claude Code tool permissions. Tool permissions should be granted via claude_args with --allowedTools: - Bash(gh *) for GitHub CLI commands - Skill(code-review:*) for the code-review skill This fixes the "Invalid permission value 'Skill' for '- tool'" error. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> Enable download-platform for iOS, watchOS, tvOS, and visionOS Added 'download-platform' option to various build matrices. Enable download-platform for iOS, watchOS, tvOS, and visionOS Added 'download-platform' option to various build matrices.
* "Update Claude PR Assistant workflow" * "Update Claude Code Review workflow" * fix: allow CodeFactor bot to trigger Claude Code Review workflow The claude-code-action@v1 blocks bot actors by default for security. Added 'codefactor-io[bot]' to allowed_bots parameter to permit automated CodeFactor commits to trigger the code review workflow. This resolves the "Workflow initiated by non-human actor" error that occurred when CodeFactor made automated commits to PRs. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Correct Claude Code Review workflow plugin configuration The Claude Code Review workflow was crashing with SDK errors due to incorrect plugin configuration syntax introduced in commit ebf913f. - Plugin marketplace format was incorrect: used full git URL instead of GitHub short format - Plugin reference format was wrong: `code-review@claude-code-plugins` instead of `code-review` - Prompt used CLI command syntax instead of natural language instructions - Changed `plugin_marketplaces` from `https://github.com/anthropics/claude-code.git` to `anthropics/claude-code` - Changed `plugins` from `code-review@claude-code-plugins` to `code-review` - Replaced CLI command prompt with descriptive natural language instructions - Kept existing `allowed_bots: 'codefactor-io[bot]'` configuration - GitHub Actions workflow should complete without exit code 1 - No SDK crash errors in logs - Claude successfully posts review comments on PRs - [Claude Code Plugins Documentation](https://code.claude.com/docs/en/plugins) - [Discover and install prebuilt plugins](https://code.claude.com/docs/en/discover-plugins) - [Code-Review Plugin README](https://github.com/anthropics/claude-code/blob/main/plugins/code-review/README.md) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Use full Git URL format for Claude Code plugin marketplace Changes plugin_marketplaces from short format 'anthropics/claude-code' to full Git URL 'https://github.com/anthropics/claude-code.git' to resolve "Invalid marketplace URL format" error in GitHub Actions workflow. The claude-code-action requires full Git URLs ending in .git for the plugin_marketplaces parameter as specified in its action.yml. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Add required permissions to Claude Code Review workflow Added additional_permissions to allow Claude bot to: - Run GitHub CLI commands (gh pr view, etc.) - Execute Swift build and test commands - Use the code-review skill This resolves permission denials that prevented the code review workflow from functioning properly. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Remove Swift build/test permissions from code review workflow Removed Swift build and test permissions since the Ubuntu runner doesn't have Swift installed. Code review focuses on static analysis of code changes, while build/test verification is handled by the main CI workflow with proper Swift containers. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Use claude_args with --allowedTools instead of additional_permissions The additional_permissions parameter is only for GitHub API permissions (like actions: read), not Claude Code tool permissions. Tool permissions should be granted via claude_args with --allowedTools: - Bash(gh *) for GitHub CLI commands - Skill(code-review:*) for the code-review skill This fixes the "Invalid permission value 'Skill' for '- tool'" error. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> Enable download-platform for iOS, watchOS, tvOS, and visionOS Added 'download-platform' option to various build matrices. Enable download-platform for iOS, watchOS, tvOS, and visionOS Added 'download-platform' option to various build matrices.
* "Update Claude PR Assistant workflow" * "Update Claude Code Review workflow" * fix: allow CodeFactor bot to trigger Claude Code Review workflow The claude-code-action@v1 blocks bot actors by default for security. Added 'codefactor-io[bot]' to allowed_bots parameter to permit automated CodeFactor commits to trigger the code review workflow. This resolves the "Workflow initiated by non-human actor" error that occurred when CodeFactor made automated commits to PRs. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Correct Claude Code Review workflow plugin configuration The Claude Code Review workflow was crashing with SDK errors due to incorrect plugin configuration syntax introduced in commit ebf913f. - Plugin marketplace format was incorrect: used full git URL instead of GitHub short format - Plugin reference format was wrong: `code-review@claude-code-plugins` instead of `code-review` - Prompt used CLI command syntax instead of natural language instructions - Changed `plugin_marketplaces` from `https://github.com/anthropics/claude-code.git` to `anthropics/claude-code` - Changed `plugins` from `code-review@claude-code-plugins` to `code-review` - Replaced CLI command prompt with descriptive natural language instructions - Kept existing `allowed_bots: 'codefactor-io[bot]'` configuration - GitHub Actions workflow should complete without exit code 1 - No SDK crash errors in logs - Claude successfully posts review comments on PRs - [Claude Code Plugins Documentation](https://code.claude.com/docs/en/plugins) - [Discover and install prebuilt plugins](https://code.claude.com/docs/en/discover-plugins) - [Code-Review Plugin README](https://github.com/anthropics/claude-code/blob/main/plugins/code-review/README.md) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Use full Git URL format for Claude Code plugin marketplace Changes plugin_marketplaces from short format 'anthropics/claude-code' to full Git URL 'https://github.com/anthropics/claude-code.git' to resolve "Invalid marketplace URL format" error in GitHub Actions workflow. The claude-code-action requires full Git URLs ending in .git for the plugin_marketplaces parameter as specified in its action.yml. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Add required permissions to Claude Code Review workflow Added additional_permissions to allow Claude bot to: - Run GitHub CLI commands (gh pr view, etc.) - Execute Swift build and test commands - Use the code-review skill This resolves permission denials that prevented the code review workflow from functioning properly. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Remove Swift build/test permissions from code review workflow Removed Swift build and test permissions since the Ubuntu runner doesn't have Swift installed. Code review focuses on static analysis of code changes, while build/test verification is handled by the main CI workflow with proper Swift containers. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Use claude_args with --allowedTools instead of additional_permissions The additional_permissions parameter is only for GitHub API permissions (like actions: read), not Claude Code tool permissions. Tool permissions should be granted via claude_args with --allowedTools: - Bash(gh *) for GitHub CLI commands - Skill(code-review:*) for the code-review skill This fixes the "Invalid permission value 'Skill' for '- tool'" error. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> Enable download-platform for iOS, watchOS, tvOS, and visionOS Added 'download-platform' option to various build matrices. Enable download-platform for iOS, watchOS, tvOS, and visionOS Added 'download-platform' option to various build matrices.
* "Update Claude PR Assistant workflow" * "Update Claude Code Review workflow" * fix: allow CodeFactor bot to trigger Claude Code Review workflow The claude-code-action@v1 blocks bot actors by default for security. Added 'codefactor-io[bot]' to allowed_bots parameter to permit automated CodeFactor commits to trigger the code review workflow. This resolves the "Workflow initiated by non-human actor" error that occurred when CodeFactor made automated commits to PRs. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Correct Claude Code Review workflow plugin configuration The Claude Code Review workflow was crashing with SDK errors due to incorrect plugin configuration syntax introduced in commit ebf913f. - Plugin marketplace format was incorrect: used full git URL instead of GitHub short format - Plugin reference format was wrong: `code-review@claude-code-plugins` instead of `code-review` - Prompt used CLI command syntax instead of natural language instructions - Changed `plugin_marketplaces` from `https://github.com/anthropics/claude-code.git` to `anthropics/claude-code` - Changed `plugins` from `code-review@claude-code-plugins` to `code-review` - Replaced CLI command prompt with descriptive natural language instructions - Kept existing `allowed_bots: 'codefactor-io[bot]'` configuration - GitHub Actions workflow should complete without exit code 1 - No SDK crash errors in logs - Claude successfully posts review comments on PRs - [Claude Code Plugins Documentation](https://code.claude.com/docs/en/plugins) - [Discover and install prebuilt plugins](https://code.claude.com/docs/en/discover-plugins) - [Code-Review Plugin README](https://github.com/anthropics/claude-code/blob/main/plugins/code-review/README.md) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Use full Git URL format for Claude Code plugin marketplace Changes plugin_marketplaces from short format 'anthropics/claude-code' to full Git URL 'https://github.com/anthropics/claude-code.git' to resolve "Invalid marketplace URL format" error in GitHub Actions workflow. The claude-code-action requires full Git URLs ending in .git for the plugin_marketplaces parameter as specified in its action.yml. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Add required permissions to Claude Code Review workflow Added additional_permissions to allow Claude bot to: - Run GitHub CLI commands (gh pr view, etc.) - Execute Swift build and test commands - Use the code-review skill This resolves permission denials that prevented the code review workflow from functioning properly. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Remove Swift build/test permissions from code review workflow Removed Swift build and test permissions since the Ubuntu runner doesn't have Swift installed. Code review focuses on static analysis of code changes, while build/test verification is handled by the main CI workflow with proper Swift containers. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Use claude_args with --allowedTools instead of additional_permissions The additional_permissions parameter is only for GitHub API permissions (like actions: read), not Claude Code tool permissions. Tool permissions should be granted via claude_args with --allowedTools: - Bash(gh *) for GitHub CLI commands - Skill(code-review:*) for the code-review skill This fixes the "Invalid permission value 'Skill' for '- tool'" error. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> Enable download-platform for iOS, watchOS, tvOS, and visionOS Added 'download-platform' option to various build matrices. Enable download-platform for iOS, watchOS, tvOS, and visionOS Added 'download-platform' option to various build matrices.
* "Update Claude PR Assistant workflow" * "Update Claude Code Review workflow" * fix: allow CodeFactor bot to trigger Claude Code Review workflow The claude-code-action@v1 blocks bot actors by default for security. Added 'codefactor-io[bot]' to allowed_bots parameter to permit automated CodeFactor commits to trigger the code review workflow. This resolves the "Workflow initiated by non-human actor" error that occurred when CodeFactor made automated commits to PRs. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Correct Claude Code Review workflow plugin configuration The Claude Code Review workflow was crashing with SDK errors due to incorrect plugin configuration syntax introduced in commit ebf913f. - Plugin marketplace format was incorrect: used full git URL instead of GitHub short format - Plugin reference format was wrong: `code-review@claude-code-plugins` instead of `code-review` - Prompt used CLI command syntax instead of natural language instructions - Changed `plugin_marketplaces` from `https://github.com/anthropics/claude-code.git` to `anthropics/claude-code` - Changed `plugins` from `code-review@claude-code-plugins` to `code-review` - Replaced CLI command prompt with descriptive natural language instructions - Kept existing `allowed_bots: 'codefactor-io[bot]'` configuration - GitHub Actions workflow should complete without exit code 1 - No SDK crash errors in logs - Claude successfully posts review comments on PRs - [Claude Code Plugins Documentation](https://code.claude.com/docs/en/plugins) - [Discover and install prebuilt plugins](https://code.claude.com/docs/en/discover-plugins) - [Code-Review Plugin README](https://github.com/anthropics/claude-code/blob/main/plugins/code-review/README.md) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Use full Git URL format for Claude Code plugin marketplace Changes plugin_marketplaces from short format 'anthropics/claude-code' to full Git URL 'https://github.com/anthropics/claude-code.git' to resolve "Invalid marketplace URL format" error in GitHub Actions workflow. The claude-code-action requires full Git URLs ending in .git for the plugin_marketplaces parameter as specified in its action.yml. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Add required permissions to Claude Code Review workflow Added additional_permissions to allow Claude bot to: - Run GitHub CLI commands (gh pr view, etc.) - Execute Swift build and test commands - Use the code-review skill This resolves permission denials that prevented the code review workflow from functioning properly. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Remove Swift build/test permissions from code review workflow Removed Swift build and test permissions since the Ubuntu runner doesn't have Swift installed. Code review focuses on static analysis of code changes, while build/test verification is handled by the main CI workflow with proper Swift containers. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> fix: Use claude_args with --allowedTools instead of additional_permissions The additional_permissions parameter is only for GitHub API permissions (like actions: read), not Claude Code tool permissions. Tool permissions should be granted via claude_args with --allowedTools: - Bash(gh *) for GitHub CLI commands - Skill(code-review:*) for the code-review skill This fixes the "Invalid permission value 'Skill' for '- tool'" error. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> Enable download-platform for iOS, watchOS, tvOS, and visionOS Added 'download-platform' option to various build matrices. Enable download-platform for iOS, watchOS, tvOS, and visionOS Added 'download-platform' option to various build matrices.
🤖 Installing Claude Code GitHub App
This PR adds a GitHub Actions workflow that enables Claude Code integration in our repository.
What is Claude Code?
Claude Code is an AI coding agent that can help with:
How it works
Once this PR is merged, we'll be able to interact with Claude by mentioning @claude in a pull request or issue comment.
Once the workflow is triggered, Claude will analyze the comment and surrounding context, and execute on the request in a GitHub action.
Important Notes
Security
There's more information in the Claude Code action repo.
After merging this PR, let's try mentioning @claude in a comment on any PR to get started!
Perform an AI-assisted review on
Summary by CodeRabbit