Skip to content

Commit 75307c7

Browse files
authored
Add cooldown + Change schedule to monthly. (#177)
Reduces potential update spam that comes from specific subversions.
1 parent 3f819c9 commit 75307c7

File tree

1 file changed

+8
-15
lines changed

1 file changed

+8
-15
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,17 @@
1-
# .github/dependabot.yml
21
version: 2
32
updates:
4-
- package-ecosystem: "npm" # use "npm" even with pnpm (Dependabot detects pnpm-lock.yaml)
5-
directory: "/" # root of your repo (package.json + pnpm-lock.yaml present)
3+
- package-ecosystem: "npm"
4+
cooldown:
5+
default-days: 7
6+
directory: "/"
67
schedule:
7-
interval: "weekly"
8-
time: "04:00"
9-
open-pull-requests-limit: 10
8+
interval: "monthly"
109
labels:
1110
- "dependencies"
1211
- "javascript"
13-
ignore:
14-
# avoid noisy / risky major Nuxt upgrades — handle major Nuxt updates manually
15-
#- dependency-name: "nuxt"
16-
# update-types: ["version-update:semver-major"]
17-
# optionally ignore Vue major bumps if you prefer manual migration
18-
#- dependency-name: "vue"
19-
# update-types: ["version-update:semver-major"]
20-
2112
- package-ecosystem: "github-actions"
13+
cooldown:
14+
default-days: 7
2215
directory: "/"
2316
schedule:
24-
interval: "weekly"
17+
interval: "monthly"

0 commit comments

Comments
 (0)