Skip to content

Commit 10db82f

Browse files
Copilotevroon
andauthored
Add 1-month cooldown to all Dependabot update configurations (#1656)
Dependabot was configured to create PRs immediately after new versions were published. Adding a 30-day cooldown across all ecosystems reduces churn from short-lived or unstable releases. ## Changes - Added `cooldown: default-days: 30` to all five package ecosystems in `.github/dependabot.yml`: - `uv` (backend) - `npm` (frontend, docs) - `github-actions` - `docker` - `docker-compose` ```yaml - package-ecosystem: "uv" directory: "/backend" schedule: interval: "weekly" cooldown: default-days: 30 ``` --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: evroon <11857441+evroon@users.noreply.github.com>
1 parent 0d8ee4a commit 10db82f

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ updates:
77
directory: "/backend"
88
schedule:
99
interval: "weekly"
10+
cooldown:
11+
default-days: 30
1012
reviewers:
1113
- "evroon"
1214
ignore:
@@ -19,6 +21,8 @@ updates:
1921
- "/docs"
2022
schedule:
2123
interval: "weekly"
24+
cooldown:
25+
default-days: 30
2226
reviewers:
2327
- "evroon"
2428
ignore:
@@ -29,6 +33,8 @@ updates:
2933
directory: "/"
3034
schedule:
3135
interval: "weekly"
36+
cooldown:
37+
default-days: 30
3238
reviewers:
3339
- "evroon"
3440
ignore:
@@ -42,6 +48,8 @@ updates:
4248
- "/"
4349
schedule:
4450
interval: "weekly"
51+
cooldown:
52+
default-days: 30
4553
reviewers:
4654
- "evroon"
4755
ignore:
@@ -52,6 +60,8 @@ updates:
5260
directory: "/"
5361
schedule:
5462
interval: "weekly"
63+
cooldown:
64+
default-days: 30
5565
reviewers:
5666
- "evroon"
5767
ignore:

0 commit comments

Comments
 (0)