Group Dependabot updates#88
Conversation
There was a problem hiding this comment.
Pull request overview
Note
Copilot couldn't run its full agentic review because no GitHub Actions runner was available. Make sure your repository has a runner available to run Copilot's review, or add a copilot-setup-steps.yml file specifying one with the runs-on attribute. See the docs for more details.
Adds Dependabot grouping so updates are consolidated into fewer PRs, mirroring yiisoft/package-template’s behavior.
Changes:
- Group all GitHub Actions dependency updates into a single Dependabot PR.
- Add a Composer Dependabot configuration and group all Composer dependency updates into a single PR.
- Set Composer versioning strategy to
increase-if-necessarywith a daily schedule and cooldown.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| # Maintain dependencies for Composer | ||
| - package-ecosystem: "composer" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "daily" | ||
| cooldown: | ||
| default-days: 7 |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #88 +/- ##
=========================================
Coverage 85.95% 85.95%
Complexity 51 51
=========================================
Files 1 1
Lines 121 121
=========================================
Hits 104 104
Misses 17 17 ☔ View full report in Codecov by Harness. |
Replicates the Dependabot grouping configuration from yiisoft/package-template so GitHub Actions updates are grouped into a single PR and Composer dependency updates are grouped into a single PR.