Skip to content

Commit 1162cd7

Browse files
authored
Add Dependabot configuration for automated dependency updates (#187)
This commit adds Dependabot configuration to automate dependency updates for: - Ruby gems (weekly) - JavaScript packages (weekly) - GitHub Actions (monthly) This will help us keep dependencies up-to-date with security patches and new features.
1 parent be1c99f commit 1162cd7

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/dependabot.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
version: 2
2+
updates:
3+
# Ruby dependencies
4+
- package-ecosystem: "bundler"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"
8+
open-pull-requests-limit: 10
9+
# JavaScript dependencies
10+
- package-ecosystem: "npm"
11+
directory: "/"
12+
schedule:
13+
interval: "weekly"
14+
open-pull-requests-limit: 10
15+
16+
# GitHub Actions
17+
- package-ecosystem: "github-actions"
18+
directory: "/"
19+
schedule:
20+
interval: "monthly"
21+
open-pull-requests-limit: 5

0 commit comments

Comments
 (0)