Skip to content

Commit 0055bb8

Browse files
Merge pull request #49 from utkarsh232005/feat/add-dependabot-config
feat: add dependabot configuration for automated updates
2 parents f303204 + 3721e4a commit 0055bb8

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
version: 2
2+
updates:
3+
# Maintain dependencies for the main npm project
4+
- package-ecosystem: "npm"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"
8+
open-pull-requests-limit: 10
9+
labels:
10+
- "dependencies"
11+
- "javascript"
12+
13+
# Maintain dependencies for GitHub Actions scripts
14+
- package-ecosystem: "npm"
15+
directory: "/.github/scripts"
16+
schedule:
17+
interval: "daily"
18+
open-pull-requests-limit: 10
19+
labels:
20+
- "dependencies"
21+
- "javascript"
22+
- "github-actions"
23+
24+
# Maintain dependencies for GitHub Actions workflows
25+
- package-ecosystem: "github-actions"
26+
directory: "/"
27+
schedule:
28+
interval: "daily"
29+
open-pull-requests-limit: 10
30+
labels:
31+
- "dependencies"
32+
- "github-actions"

0 commit comments

Comments
 (0)