Skip to content

Commit e6318ae

Browse files
committed
Add Dependabot configuration for automated dependency updates
- Configure monthly dependency update checks for Go modules and GitHub Actions - Set open PR limit to 20 for both ecosystems - Group AWS SDK packages together to prevent version conflicts - Group testing-related dependencies for coordinated updates - Use default Dependabot commit message formatting
1 parent 52d509d commit e6318ae

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/dependabot.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "gomod"
4+
directory: "/"
5+
schedule:
6+
interval: "monthly"
7+
open-pull-requests-limit: 20
8+
groups:
9+
aws-sdk:
10+
patterns:
11+
- "github.com/aws/aws-sdk-go-v2*"
12+
update-types:
13+
- "minor"
14+
- "patch"
15+
testing:
16+
patterns:
17+
- "github.com/stretchr/testify"
18+
- "*test*"
19+
update-types:
20+
- "minor"
21+
- "patch"
22+
23+
- package-ecosystem: "github-actions"
24+
directory: "/.github/workflows"
25+
schedule:
26+
interval: "monthly"
27+
open-pull-requests-limit: 20

0 commit comments

Comments
 (0)