1
0
Fork 0
mirror of https://github.com/imjasonh/client-go2 synced 2026-07-08 09:05:38 +00:00
client-go2/.github/dependabot.yml
Jason Hall bf141053f3
chore: Add Dependabot configuration for Go and GitHub Actions
- Configure weekly updates for Go modules
- Configure weekly updates for GitHub Actions
- Group Kubernetes dependencies (k8s.io/*) together
- Set update schedule for Mondays at 10:00 UTC
- Add appropriate labels for dependency PRs

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-27 17:16:28 -04:00

46 lines
No EOL
954 B
YAML

version: 2
updates:
# Enable version updates for Go modules
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "10:00"
open-pull-requests-limit: 10
reviewers:
- "imjasonh"
assignees:
- "imjasonh"
commit-message:
prefix: "chore"
include: "scope"
labels:
- "dependencies"
- "go"
groups:
k8s-dependencies:
patterns:
- "k8s.io/*"
update-types:
- "minor"
- "patch"
# Enable version updates for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "10:00"
open-pull-requests-limit: 10
reviewers:
- "imjasonh"
assignees:
- "imjasonh"
commit-message:
prefix: "chore"
include: "scope"
labels:
- "dependencies"
- "github-actions"