Skip to content

Commit cc84235

Browse files
ejntaylorclaude
andauthored
Add Dependabot config for weekly npm and Actions updates (#28)
Groups minor/patch into a single PR and ignores major version bumps; security updates still bypass the ignore rule. Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
1 parent e80f91b commit cc84235

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
open-pull-requests-limit: 5
8+
labels:
9+
- "dependencies"
10+
- "frontend"
11+
ignore:
12+
- dependency-name: "*"
13+
update-types: ["version-update:semver-major"]
14+
groups:
15+
non-major:
16+
update-types: ["minor", "patch"]
17+
18+
- package-ecosystem: "github-actions"
19+
directory: "/"
20+
schedule:
21+
interval: "weekly"
22+
open-pull-requests-limit: 3
23+
labels:
24+
- "dependencies"
25+
- "ci"
26+
ignore:
27+
- dependency-name: "*"
28+
update-types: ["version-update:semver-major"]

0 commit comments

Comments
 (0)