Browse Source
👷 Configure Dependabot to group updates and update weekly (#15560)
pull/15594/head
Yurii Motov
2 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
24 additions and
3 deletions
-
.github/dependabot.yml
|
|
|
@ -4,26 +4,47 @@ updates: |
|
|
|
- package-ecosystem: "github-actions" |
|
|
|
directory: "/" |
|
|
|
schedule: |
|
|
|
interval: "daily" |
|
|
|
interval: "weekly" |
|
|
|
cooldown: |
|
|
|
default-days: 7 |
|
|
|
commit-message: |
|
|
|
prefix: ⬆ |
|
|
|
labels: |
|
|
|
- "internal" |
|
|
|
- "dependencies" |
|
|
|
- "github_actions" |
|
|
|
groups: |
|
|
|
github-actions: |
|
|
|
patterns: |
|
|
|
- "*" |
|
|
|
# Python |
|
|
|
- package-ecosystem: "uv" |
|
|
|
directory: "/" |
|
|
|
schedule: |
|
|
|
interval: "daily" |
|
|
|
interval: "weekly" |
|
|
|
cooldown: |
|
|
|
default-days: 7 |
|
|
|
commit-message: |
|
|
|
prefix: ⬆ |
|
|
|
groups: |
|
|
|
python-packages: |
|
|
|
dependency-type: "development" |
|
|
|
patterns: |
|
|
|
- "*" |
|
|
|
# pre-commit |
|
|
|
- package-ecosystem: "pre-commit" |
|
|
|
directory: "/" |
|
|
|
schedule: |
|
|
|
interval: "daily" |
|
|
|
interval: "weekly" |
|
|
|
cooldown: |
|
|
|
default-days: 7 |
|
|
|
commit-message: |
|
|
|
prefix: ⬆ |
|
|
|
labels: |
|
|
|
- "internal" |
|
|
|
- "dependencies" |
|
|
|
- "pre-commit" |
|
|
|
groups: |
|
|
|
pre-commit: |
|
|
|
patterns: |
|
|
|
- "*" |
|
|
|
|