Skip to content

Commit 5b9e0a7

Browse files
committed
Adds Dependabot configuration file
Sets up Dependabot for automated dependency updates in a specific package. Configures weekly checks and ignores major version updates to prevent breaking changes.
1 parent 5af141e commit 5b9e0a7

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/dependabot.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
2+
3+
version: 2
4+
updates:
5+
- package-ecosystem: "npm"
6+
directories:
7+
- "/packages/nextjs-cache-handler"
8+
schedule:
9+
interval: "weekly"
10+
ignore:
11+
- dependency-name: "*"
12+
update-types: ["version-update:semver-major"]
13+
groups:
14+
all-updates:
15+
applies-to: all
16+
patterns:
17+
- "*"
18+
update-types:
19+
- "minor"
20+
- "patch"

0 commit comments

Comments
 (0)