Several improvements to the Dependabot configuration#78536
Conversation
This removes the `'*'` pattern, which is not necessary (all dependencies is the default). It also adjusts the group configuration to exclude the major and security updates from grouping to ensure they each have an individual pull request. This allows for deeper review of larger and potentially breaking changes without blocking minor, patch, or security updates.
There was a problem hiding this comment.
Pull request overview
This PR updates the repository’s Dependabot configuration for the github-actions ecosystem to better control update timing and PR organization.
Changes:
- Increased the concurrent Dependabot PR limit from 10 to 20.
- Added a default 7-day cooldown window before opening PRs for newly released versions.
- Adjusted grouping to only include minor/patch updates (so major updates are isolated).
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the If you're merging code through a pull request on GitHub, copy and paste the following into the bottom of the merge commit message. To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook. |
|
Flaky tests detected in 5cc9e09. 🔍 Workflow run URL: https://github.com/WordPress/gutenberg/actions/runs/26263469362
|

What?
This PR makes a handful of changes to the Dependabot file that is currently configured to prepare updates for the GitHub Actions ecosystem.
cooldownperiod of7days is being added.minorandpatchupdates (major version updates will each get their own isolated pull request).10to20(there are currently 21 unique third-party GitHub Actions being used).Why?
cooldownvalue helps to guard against scenarios where a dependency is updated too soon after initial release, which could possibly result in falling victim to a supply chain attack.Use of AI Tools
None.