Skip to content

Commit d45cc4e

Browse files
Add Dependabot configuration file
Configure Dependabot for GitHub Actions, Docker, and Git submodules with specified schedules and reviewers. Signed-off-by: Diogo Ribeiro <[email protected]>
1 parent a17140f commit d45cc4e

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

.github/dependabot.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
version: 2
2+
updates:
3+
# GitHub Actions (recommended for any repo)
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "monthly"
8+
open-pull-requests-limit: 10
9+
reviewers:
10+
- "diogoribeiro7"
11+
labels:
12+
- "dependencies"
13+
- "github-actions"
14+
15+
# Docker base images (if you use rocker/* or other images)
16+
- package-ecosystem: "docker"
17+
directory: "/" # adjust if your Dockerfile lives elsewhere
18+
schedule:
19+
interval: "weekly"
20+
open-pull-requests-limit: 10
21+
reviewers:
22+
- "diogoribeiro7"
23+
labels:
24+
- "dependencies"
25+
- "docker"
26+
27+
# Git submodules (if you vendor templates/extensions)
28+
- package-ecosystem: "gitsubmodule"
29+
directory: "/"
30+
schedule:
31+
interval: "weekly"
32+
open-pull-requests-limit: 10
33+
reviewers:
34+
- "diogoribeiro7"
35+
labels:
36+
- "dependencies"
37+
- "submodule"
38+

0 commit comments

Comments
 (0)