mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-08-15 19:56:06 +00:00
* Initial plan * Group Dependabot GitHub Actions updates Co-authored-by: kaovilai <11228024+kaovilai@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: kaovilai <11228024+kaovilai@users.noreply.github.com>
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
version: 2
|
|
updates:
|
|
# Dependencies listed in .github/workflows
|
|
- package-ecosystem: "github-actions"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "weekly"
|
|
groups:
|
|
github-actions:
|
|
patterns:
|
|
- "*"
|
|
labels:
|
|
- "Dependencies"
|
|
- "github_actions"
|
|
- "kind/changelog-not-required"
|
|
# Dependencies listed in go.mod
|
|
- package-ecosystem: "gomod"
|
|
directory: "/" # Location of package manifests
|
|
schedule:
|
|
interval: "weekly"
|
|
labels:
|
|
- "Dependencies"
|
|
- "go"
|
|
- "kind/changelog-not-required"
|
|
ignore:
|
|
- dependency-name: "*"
|
|
update-types: ["version-update:semver-major", "version-update:semver-minor", "version-update:semver-patch"]
|
|
# Dependencies listed in pkg/apis/go.mod
|
|
- package-ecosystem: "gomod"
|
|
directory: "/pkg/apis" # Location of package manifests
|
|
schedule:
|
|
interval: "weekly"
|
|
labels:
|
|
- "Dependencies"
|
|
- "go"
|
|
- "kind/changelog-not-required"
|
|
ignore:
|
|
- dependency-name: "*"
|
|
update-types: ["version-update:semver-major", "version-update:semver-minor", "version-update:semver-patch"]
|