WordPress-Coding-Standards/.github/dependabot.yml
jrfnl d5a0adc9ef
Dependabot: update config
This commit makes the following change to the Dependabot config:
* It introduces a "group".
    By default Dependabot raises individual PRs for each update. Now, it will group updates to new minor or patch release for all action runners into a single PR.
    Updates to new major releases of action runners will still be raised as individual PRs.

Refs:
* https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/optimizing-pr-creation-version-updates
* https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference
2025-09-20 02:13:05 +02:00

23 lines
591 B
YAML

# Dependabot configuration.
#
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
time: "09:00"
open-pull-requests-limit: 5
commit-message:
prefix: "GH Actions:"
labels:
- "Type: Chores/Cleanup"
groups:
action-runners:
applies-to: version-updates
update-types:
- "minor"
- "patch"