chore(ci): skip Claude Code Review for Dependabot PRs#6
Conversation
Dependabot bot PRs don't need code review - they're automated dependency bumps. This prevents unnecessary workflow failures.
Code Review - PR #6: Skip Claude Code Review for Dependabot PRsSummaryThis PR adds a conditional check to skip the Claude Code Review workflow for Dependabot PRs. The implementation is clean and follows best practices. ✅ Positives
🔍 Observations
🎯 RecommendationsOptional Enhancement: If you want to be more explicit about bot exclusions in general, you could use: if: github.actor != 'dependabot[bot]' && github.actor != 'github-actions[bot]'However, this depends on whether you use other bots that might open PRs. ✅ ApprovalNo blocking issues found. This PR is ready to merge.
Verdict: LGTM 🚀 |
Summary
if: github.actor != 'dependabot[bot]'condition to the Claude Code Review workflowTest plan