Skip to content

Commit

Permalink
chore: add dependabot ignore for rancher/wrangler
Browse files Browse the repository at this point in the history
Dependabot should ignore rancher/wrangler version bumps as it is updated
manually. This commit also aligns dependabot.yml format with other
providers.

Signed-off-by: Carlos Salas <[email protected]>
  • Loading branch information
salasberryfin committed Jan 17, 2024
1 parent ba933df commit efac0c6
Showing 1 changed file with 35 additions and 18 deletions.
53 changes: 35 additions & 18 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,42 +7,59 @@ updates:
directory: "/"
schedule:
interval: "weekly"
commit-message:
prefix: ":seedling:"
# Go modules in main branch
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"
ignore:
- dependency-name: "sigs.k8s.io/controller-runtime"
# Ignore k8s and its transitives modules as they are upgraded manually
# together with controller-runtime.
- dependency-name: "k8s.io/*"
- dependency-name: "go.etcd.io/*"
- dependency-name: "github.com/Azure/azure-sdk-for-go"
# Ignore controller-runtime as it's upgraded manually.
- dependency-name: "sigs.k8s.io/controller-runtime"
# Ignore k8s and its transitives modules as they are upgraded manually
# together with controller-runtime.
- dependency-name: "k8s.io/*"
# Ignore wrangler
- dependency-name: "github.com/rancher/wrangler"
- dependency-name: "go.etcd.io/*"
- dependency-name: "github.com/Azure/azure-sdk-for-go"
commit-message:
prefix: ":seedling:"
target-branch: "main"
# Go modules in release-v2.8 branch
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"
ignore:
- dependency-name: "sigs.k8s.io/controller-runtime"
# Ignore k8s and its transitives modules as they are upgraded manually
# together with controller-runtime.
- dependency-name: "k8s.io/*"
- dependency-name: "go.etcd.io/*"
- dependency-name: "github.com/Azure/azure-sdk-for-go"
# Ignore controller-runtime as it's upgraded manually.
- dependency-name: "sigs.k8s.io/controller-runtime"
# Ignore k8s and its transitives modules as they are upgraded manually
# together with controller-runtime.
- dependency-name: "k8s.io/*"
# Ignore wrangler
- dependency-name: "github.com/rancher/wrangler"
- dependency-name: "go.etcd.io/*"
- dependency-name: "github.com/Azure/azure-sdk-for-go"
commit-message:
prefix: ":seedling:"
target-branch: "release-v2.8"
# Go modules in release-v2.7 branch
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"
ignore:
- dependency-name: "sigs.k8s.io/controller-runtime"
# Ignore k8s and its transitives modules as they are upgraded manually
# together with controller-runtime.
- dependency-name: "k8s.io/*"
- dependency-name: "go.etcd.io/*"
- dependency-name: "github.com/Azure/azure-sdk-for-go"
# Ignore controller-runtime as it's upgraded manually.
- dependency-name: "sigs.k8s.io/controller-runtime"
# Ignore k8s and its transitives modules as they are upgraded manually
# together with controller-runtime.
- dependency-name: "k8s.io/*"
# Ignore wrangler
- dependency-name: "github.com/rancher/wrangler"
- dependency-name: "go.etcd.io/*"
- dependency-name: "github.com/Azure/azure-sdk-for-go"
target-branch: "release-v2.7"
commit-message:
prefix: ":seedling:"

0 comments on commit efac0c6

Please sign in to comment.