mirror of
https://github.com/fabriziosalmi/patterns.git
synced 2026-07-31 15:05:44 -04:00
Enables weekly Dependabot updates (minor/patch grouped to limit PR noise) for the ecosystems present in this repo (GitHub Actions plus the relevant package managers and Dockerfiles). Config-only, no code changes. Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
39 lines
773 B
YAML
39 lines
773 B
YAML
# Dependabot configuration — https://docs.github.com/code-security/dependabot
|
|
version: 2
|
|
updates:
|
|
- package-ecosystem: "github-actions"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "weekly"
|
|
open-pull-requests-limit: 5
|
|
groups:
|
|
actions:
|
|
patterns:
|
|
- "*"
|
|
|
|
- package-ecosystem: "pip"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "weekly"
|
|
open-pull-requests-limit: 5
|
|
groups:
|
|
pip:
|
|
patterns:
|
|
- "*"
|
|
update-types:
|
|
- "minor"
|
|
- "patch"
|
|
|
|
- package-ecosystem: "npm"
|
|
directory: "/docs"
|
|
schedule:
|
|
interval: "weekly"
|
|
open-pull-requests-limit: 5
|
|
groups:
|
|
npm:
|
|
patterns:
|
|
- "*"
|
|
update-types:
|
|
- "minor"
|
|
- "patch"
|