ci: add ignore rule for playground/** dependabot updates#115
ci: add ignore rule for playground/** dependabot updates#1159romise merged 3 commits intonpmx-dev:mainfrom
Conversation
|
Warning Rate limit exceeded
Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 53 minutes and 24 seconds. ⌛ How to resolve this issue?After the wait time has elapsed, 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 have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughThe PR modifies the Dependabot configuration file to clarify and strengthen dependency management for the playground directory. It updates the comment for the root npm ecosystem to explicitly state that Possibly related PRs
🚥 Pre-merge checks | ✅ 1✅ Passed checks (1 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 |
There was a problem hiding this comment.
🧹 Nitpick comments (1)
.github/dependabot.yml (1)
22-25: Optional: considerinterval: monthlyfor the ignore-only block.Since every dependency here is ignored, the weekly schedule only drives background checks that can never produce PRs. Dropping it to monthly reduces wasted Dependabot runs without changing behaviour.
♻️ Proposed tweak
schedule: - interval: weekly + interval: monthly ignore: - dependency-name: "*"
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
Run ID: 60f976a4-b409-4f87-8ce8-e34163e9168f
📒 Files selected for processing (1)
.github/dependabot.yml
Follow-up to #108.
After #108, Dependabot was still opening security update PRs for
playground/yarn.exclude-pathsonly prevents version updates. It does not block security updates, soplayground/yarnstill needed a dedicatedignorerule.This change adds that ignore configuration so updates under
playground/yarnno longer create Dependabot PRs.