Skip to content

Commit 9329254

Browse files
authored
chore: add Dependabot config (#674)
1 parent dadda0d commit 9329254

1 file changed

Lines changed: 43 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Please see the documentation for all configuration options:
2+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
3+
4+
version: 2
5+
updates:
6+
# Go module dependencies
7+
- package-ecosystem: "gomod"
8+
open-pull-requests-limit: 10
9+
directory: "/" # Location of package manifests
10+
schedule:
11+
interval: "weekly"
12+
day: "tuesday"
13+
time: "11:00"
14+
# Group minor and patch updates
15+
groups:
16+
go-dependencies:
17+
patterns:
18+
- "*"
19+
update-types:
20+
- "minor"
21+
- "patch"
22+
labels:
23+
- "dependencies"
24+
- "go"
25+
# GitHub Actions
26+
- package-ecosystem: "github-actions"
27+
open-pull-requests-limit: 10
28+
directory: "/"
29+
schedule:
30+
# Check for updates to GitHub Actions every week
31+
interval: "weekly"
32+
day: "tuesday"
33+
time: "11:00"
34+
groups:
35+
github-actions-dependencies:
36+
patterns:
37+
- "*"
38+
update-types:
39+
- "minor"
40+
- "patch"
41+
labels:
42+
- "dependencies"
43+
- "github-actions"

0 commit comments

Comments
 (0)