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

🌱 Configure dependabot for release-1.6 branch #1781

Merged
merged 1 commit into from
Jun 18, 2024
Merged
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
90 changes: 90 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,3 +181,93 @@ updates:
commit-message:
prefix: ":seedling:"
## release-1.7 branch config ends here
## release-1.6 branch config starts here
- package-ecosystem: "github-actions"
directory: "/" # Location of package manifests
schedule:
interval: "monthly"
target-branch: release-1.6
commit-message:
prefix: ":seedling:"
ignore:
# Ignore major and minor bumps for release branch
- dependency-name: "*"
update-types: ["version-update:semver-major", "version-update:semver-minor"]
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"
target-branch: release-1.6
## group all dependencies with a k8s.io prefix into a single PR.
groups:
kubernetes:
patterns: ["k8s.io/*"]
ignore:
# Ignore major and minor bumps for release branch
- dependency-name: "*"
update-types: ["version-update:semver-major", "version-update:semver-minor"]
# golang.org/x/* only releases minors no patches, so minors have to be allowed
- dependency-name: "golang.org/x/*"
update-types: ["version-update:semver-major"]
# ignore ipam, as it needs more than just gomod
- dependency-name: "github.com/metal3-io/ip-address-manager/api"
commit-message:
prefix: ":seedling:"
- package-ecosystem: "gomod"
directory: "/api"
schedule:
interval: "weekly"
target-branch: release-1.6
## group all dependencies with a k8s.io prefix into a single PR.
groups:
kubernetes:
patterns: ["k8s.io/*"]
ignore:
# Ignore major and minor bumps for release branch
- dependency-name: "*"
update-types: ["version-update:semver-major", "version-update:semver-minor"]
# golang.org/x/* only releases minors no patches, so minors have to be allowed
- dependency-name: "golang.org/x/*"
update-types: ["version-update:semver-major"]
# ignore ipam, as it needs more than just gomod
- dependency-name: "github.com/metal3-io/ip-address-manager/api"
commit-message:
prefix: ":seedling:"
- package-ecosystem: "gomod"
directory: "/test"
schedule:
interval: "weekly"
target-branch: release-1.6
## group all dependencies with a k8s.io prefix into a single PR.
groups:
kubernetes:
patterns: ["k8s.io/*"]
ignore:
# Ignore major and minor bumps for release branch
- dependency-name: "*"
update-types: ["version-update:semver-major", "version-update:semver-minor"]
# golang.org/x/* only releases minors no patches, so minors have to be allowed
- dependency-name: "golang.org/x/*"
update-types: ["version-update:semver-major"]
# ignore ipam, as it needs more than just gomod
- dependency-name: "github.com/metal3-io/ip-address-manager/api"
commit-message:
prefix: ":seedling:"
- package-ecosystem: "gomod"
directory: "/hack/tools"
schedule:
interval: "weekly"
target-branch: release-1.6
groups:
kubernetes:
patterns: ["k8s.io/*"]
ignore:
# Ignore major and minor bumps for release branch
- dependency-name: "*"
update-types: ["version-update:semver-major", "version-update:semver-minor"]
# golang.org/x/* only releases minors no patches, so minors have to be allowed
- dependency-name: "golang.org/x/*"
update-types: ["version-update:semver-major"]
commit-message:
prefix: ":seedling:"
## release-1.6 branch config ends here