Skip to content

Commit 3734a57

Browse files
Add Dependabot configuration for dependencies
Configure Dependabot to manage JS/TS and GitHub Actions dependencies with specified schedules and reviewers.
1 parent 2ab48a4 commit 3734a57

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.github/dependabot.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
version: 2
2+
updates:
3+
# JS/TS dependencies (Yarn or npm)
4+
- package-ecosystem: "npm" # Yarn is handled via the npm ecosystem
5+
directory: "/" # Path to your package.json (root)
6+
schedule:
7+
interval: "weekly" # Check once per week
8+
open-pull-requests-limit: 10
9+
reviewers:
10+
- "diogoribeiro7"
11+
labels:
12+
- "dependencies"
13+
- "javascript"
14+
- "typescript"
15+
# Optional tweaks (uncomment if useful):
16+
# versioning-strategy: "auto" # Default; consider "increase-if-necessary"
17+
# groups: # Example: group minor/patch devDeps together
18+
# ts-and-types:
19+
# patterns:
20+
# - "@types/*"
21+
# - "typescript"
22+
# update-types:
23+
# - "minor"
24+
# - "patch"
25+
26+
# GitHub Actions
27+
- package-ecosystem: "github-actions"
28+
directory: "/"
29+
schedule:
30+
interval: "monthly"
31+
reviewers:
32+
- "diogoribeiro7"
33+
labels:
34+
- "dependencies"
35+
- "github-actions"

0 commit comments

Comments
 (0)