Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add release/0.3 sections to dependabot config #431

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add release/0.3 sections to dependabot config
nwneisen committed Jan 21, 2025
commit 7ab466c38c2c8e53c4b8a87a20f1c991fbb39dd4
42 changes: 42 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -19,3 +19,45 @@ updates:
- "*/opencontainers/*"
- "*/cri-api/*"
- "*/kubernetes/*"

# 0.3 branch updates
- package-ecosystem: gomod
target-branch: "release/0.3"
directory: "/"
schedule:
interval: 'weekly'
labels:
- 'dependabot'
open-pull-requests-limit: 5
groups:
# We are less concerned about the minor dependencies
minor-dependencies:
patterns:
- "*"
# Skip docker and k8 dependencies. We want to manually keep an eye on these
exclude-patterns:
- "*/docker/*"
- "*/moby/*"
- "*/opencontainers/*"
- "*/cri-api/*"
- "*/kubernetes/*"
- package-ecosystem: gomod
target-branch: "release/0.3"
directory: "/"
schedule:
interval: 'weekly'
labels:
- 'dependabot'
open-pull-requests-limit: 5
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major"]
groups:
major-dependencies:
patterns:
- "*/docker/*"
- "*/moby/*"
- "*/opencontainers/*"
- "*/cri-api/*"
- "*/kubernetes/*"