| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
WalkthroughEnables the check-branch hook in .pre-commit-config.yaml, removes explicit commit-msg stage and prunes commented hook entries. In .pre-commit-hooks.yaml, removes the stages: [commit-msg] from check-message. README.rst receives minor wording and emphasis updates in Highlights/What’s New. No code or runtime logic changes. Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Possibly related PRs
Suggested labelsenhancement Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
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. ❤️ ShareComment @coderabbitai help to get the list of available commands and usage tips. |
Sorry, something went wrong.
|
Sorry, something went wrong.
Codecov Report✅ All modified and coverable lines are covered by tests. @@ Coverage Diff @@
## main #297 +/- ##
=======================================
Coverage 87.33% 87.33%
=======================================
Files 8 8
Lines 687 687
=======================================
Hits 600 600
Misses 87 87 ☔ View full report in Codecov by Sentry.
|
Sorry, something went wrong.
There was a problem hiding this comment.
Actionable comments posted: 1
📜 Review detailsConfiguration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📥 CommitsReviewing files that changed from the base of the PR and between 1e4db5d and 90417da.
📒 Files selected for processing (3)📄 CodeRabbit inference engine (.github/copilot-instructions.md)
Maintain pre-commit configuration to run repository hooks
Files:
Learnt from: CR PR: commit-check/commit-check#0 File: .github/copilot-instructions.md:0-0 Timestamp: 2025-10-03T10:28:06.793Z Learning: Applies to .pre-commit-config.yaml : Maintain pre-commit configuration to run repository hooks
Learnt from: CR PR: commit-check/commit-check#0 File: .github/copilot-instructions.md:0-0 Timestamp: 2025-10-03T10:28:06.793Z Learning: Applies to .pre-commit-config.yaml : Maintain pre-commit configuration to run repository hooks
Applied to files:
Sorry, something went wrong.
| - id: check-message | ||
| # - id: check-branch # uncomment if you need. | ||
| - id: check-branch # uncomment if you need. | ||
| - id: check-author-name # uncomment if you need. | ||
| - id: check-author-email # uncomment if you need. |
There was a problem hiding this comment.
⚠️ Potential issue | 🔴 Critical
Restore commit-msg installation for check-message.
Dropping default_install_hook_types: [pre-commit, commit-msg] (and the commit-msg stage) means pre-commit install no longer sets up the commit-msg hook, so check-message never runs. The commit message validator silently stops working—a regression. Please restore commit-msg installation (either via default_install_hook_types or per-hook stages: [commit-msg], plus the matching change in .pre-commit-hooks.yaml) so the check keeps executing.
repos:
+- default_install_hook_types: [pre-commit, commit-msg]
- repo: https://github.com/commit-check/commit-check
rev: v0.10.2
hooks:
- id: check-message
+ stages: [commit-msg]Based on learnings
🤖 Prompt for AI AgentsCommittable suggestion skipped: line range outside the PR's diff.
.pre-commit-config.yaml lines 36-39: the commit-msg hook installation was removed so the check-message hook never runs; restore commit-msg installation by either adding back default_install_hook_types: [pre-commit, commit-msg] to the file or by adding stages: [commit-msg] to the check-message hook entry and also ensure the corresponding .pre-commit-hooks.yaml lists commit-msg in that hook's stages; update both files accordingly so pre-commit install sets up the commit-msg hook and the check-message hook executes on commit messages.
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Summary by CodeRabbit
Documentation
Chores