Skip to content

Commit

Permalink
Merge pull request #133 from 0xFelix/renovate-dashboard
Browse files Browse the repository at this point in the history
renovate: Enable dashboard and format config
  • Loading branch information
kubevirt-bot authored Aug 29, 2024
2 parents bcbef40 + 2b875e1 commit 91f87a0
Showing 1 changed file with 61 additions and 22 deletions.
83 changes: 61 additions & 22 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,67 +1,106 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [":gitSignOff"],
"labels": ["release-note-none"],
"extends": [
":gitSignOff",
":dependencyDashboard"
],
"labels": [
"release-note-none"
],
"prConcurrentLimit": 3,
"enabledManagers": ["custom.regex", "github-actions"],
"enabledManagers": [
"custom.regex",
"github-actions"
],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["^hack/e2e-setup.sh$"],
"matchStrings": ["KIND_VERSION=\\${KIND_VERSION:-(?<currentValue>.*?)}"],
"fileMatch": [
"^hack/e2e-setup.sh$"
],
"matchStrings": [
"KIND_VERSION=\\${KIND_VERSION:-(?<currentValue>.*?)}"
],
"datasourceTemplate": "github-releases",
"packageNameTemplate": "kubernetes-sigs/kind"
},
{
"customType": "regex",
"fileMatch": ["^.github/workflows/integration.yml$"],
"matchStrings": ["\\sversion: (?<currentValue>.*?)\\n"],
"fileMatch": [
"^.github/workflows/integration.yml$"
],
"matchStrings": [
"\\sversion: (?<currentValue>.*?)\\n"
],
"datasourceTemplate": "github-releases",
"packageNameTemplate": "kubernetes-sigs/kind"
},
{
"customType": "regex",
"fileMatch": ["^hack/e2e-setup.sh$"],
"matchStrings": ["KUBECTL_VERSION=\\${KUBECTL_VERSION:-(?<currentValue>.*?)}"],
"fileMatch": [
"^hack/e2e-setup.sh$"
],
"matchStrings": [
"KUBECTL_VERSION=\\${KUBECTL_VERSION:-(?<currentValue>.*?)}"
],
"datasourceTemplate": "custom.k8s",
"depNameTemplate": "kubectl"
},
{
"customType": "regex",
"fileMatch": ["^hack/e2e-setup.sh$"],
"matchStrings": ["KUBEVIRT_VERSION=\\${KUBEVIRT_VERSION:-(?<currentValue>.*?)}"],
"fileMatch": [
"^hack/e2e-setup.sh$"
],
"matchStrings": [
"KUBEVIRT_VERSION=\\${KUBEVIRT_VERSION:-(?<currentValue>.*?)}"
],
"datasourceTemplate": "github-releases",
"packageNameTemplate": "kubevirt/kubevirt"
},
{
"customType": "regex",
"fileMatch": ["^hack/e2e-setup.sh$"],
"matchStrings": ["KUBEVIRT_CDI_VERSION=\\${KUBEVIRT_CDI_VERSION:-(?<currentValue>.*?)}"],
"fileMatch": [
"^hack/e2e-setup.sh$"
],
"matchStrings": [
"KUBEVIRT_CDI_VERSION=\\${KUBEVIRT_CDI_VERSION:-(?<currentValue>.*?)}"
],
"datasourceTemplate": "github-releases",
"packageNameTemplate": "kubevirt/containerized-data-importer"
},
{
"customType": "regex",
"fileMatch": ["^hack/e2e-setup.sh$"],
"matchStrings": ["CNAO_VERSION=\\${CNAO_VERSION:-(?<currentValue>.*?)}"],
"fileMatch": [
"^hack/e2e-setup.sh$"
],
"matchStrings": [
"CNAO_VERSION=\\${CNAO_VERSION:-(?<currentValue>.*?)}"
],
"datasourceTemplate": "github-releases",
"packageNameTemplate": "kubevirt/cluster-network-addons-operator"
}
],
"customDatasources": {
"k8s": {
"defaultRegistryUrlTemplate": "https://cdn.dl.k8s.io/release/stable.txt",
"format": "plain"
}
"k8s": {
"defaultRegistryUrlTemplate": "https://cdn.dl.k8s.io/release/stable.txt",
"format": "plain"
}
},
"packageRules": [
{
"matchFileNames": ["hack/e2e-setup.sh", ".github/workflows/integration.yml"],
"matchManagers": ["custom.regex"],
"matchFileNames": [
"hack/e2e-setup.sh",
".github/workflows/integration.yml"
],
"matchManagers": [
"custom.regex"
],
"groupName": "e2e-setup versions"
},
{
"matchManagers": ["github-actions"],
"matchManagers": [
"github-actions"
],
"groupName": "GitHub actions"
}
]
Expand Down

0 comments on commit 91f87a0

Please sign in to comment.