fix(ci): add skill-drift workflow and block floating GHA tags in pre-commit#478
fix(ci): add skill-drift workflow and block floating GHA tags in pre-commit#478castrojo wants to merge 1 commit into
Conversation
…commit - .github/workflows/skill-drift.yml: detect stale agent skills on PRs (closes #413) - .pre-commit-config.yaml: add pygrep hook blocking @main/@v* floating tags (closes #477) Assisted-by: Claude Sonnet 4.6 via GitHub Copilot CLI Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
|
Warning Review limit reached
More reviews will be available in 48 minutes and 49 seconds. Learn how PR review limits work. Your organization has run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After more reviews become available, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans include higher PR review limits than trial, open-source, and free plans. In all cases, reviews become available again over time. During sustained high-volume PR review activity, CodeRabbit may temporarily slow when the next review becomes available. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (2)
✨ 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 |
|
Superseded by #480 after rebuilding the guardrails branch on current main. The repo already has the floating-action-tags hook, and the overlapping skill-drift/workflow work now has a single path forward there. |
Pull request was closed
Fixes #413 and #477.
Changes
skill-drift.yml
Adds the skill drift detection workflow to common. This workflow runs on PRs to detect when agent skills are out of date relative to code changes. Adapted from bluefin's version with code-paths updated for common's structure (system_files/, Containerfile) instead of build_files/.
.pre-commit-config.yaml
Adds a local pygrep hook that blocks floating GitHub Action tags (
@main,@master,@latest,@v1,@v2, etc.) in workflow files at commit time. This complements Renovate's existing SHA-pinning management by preventing new floating tags from being introduced.Assisted-by: Claude Sonnet 4.6 via GitHub Copilot CLI