chore(dependabot): update config (#1990)

- GH Action Interval changes from daily to weekly
- NPM Interval remains as weekly
- NPM PRs
  - Group patch releases
    - Increase cooldown from 4 to 5 days
  - Group minor releases
    - Increase cooldown from 4 to 5 days
  - Major releases will remain as single PR for each package
    - Increase cooldown from 4 to 14 days
- GH Actions PR
  - Group patch and minors
    - Increase cooldown from 4 to 5 days
  - Major releases will remain as single PR for each package
    - Increase cooldown from 4 to 14 days
This commit is contained in:
エリス
2026-08-10 22:35:42 +09:00
committed by GitHub
parent 3187fc0117
commit 807c64c8eb
+25 -4
View File
@@ -16,17 +16,38 @@
# under the License.
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
cooldown:
default-days: 4
default-days: 5
semver-major-days: 14
schedule:
interval: "daily" # Every weekday, Monday to Friday
interval: "weekly" # Every Monday
groups:
gh-actions-patch-minor:
patterns:
- "*"
update-types:
- "patch"
- "minor"
- package-ecosystem: "npm"
directory: "/"
cooldown:
default-days: 4
default-days: 5
semver-major-days: 14
schedule:
interval: "weekly" # By default on a Monday
interval: "weekly" # Every Monday
groups:
npm-patch:
patterns:
- "*"
update-types:
- "patch"
npm-minor:
patterns:
- "*"
update-types:
- "minor"