Skip to content

Commit

Permalink
Merge pull request #194 from Crisu1710/renovate/migrate-config
Browse files Browse the repository at this point in the history
Migrate renovate config
  • Loading branch information
Crisu1710 authored Feb 10, 2025
2 parents 47fb0da + f3f60ac commit 106b824
Showing 1 changed file with 22 additions and 7 deletions.
29 changes: 22 additions & 7 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,43 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"dependencyDashboard": true,
"dependencyDashboardTitle": "Renovate Dashboard",
"labels": ["renovatebot"],
"labels": [
"renovatebot"
],
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"matchUpdateTypes": [
"minor",
"patch",
"pin",
"digest"
],
"automerge": true
}
],
"kubernetes": {
"fileMatch": ["\\.yaml$"]
"fileMatch": [
"\\.yaml$"
]
},
"extends": [
"config:base"
"config:recommended"
],
"regexManagers": [
"customManagers": [
{
"customType": "regex",
"fileMatch": "kustomization.yaml",
"matchStrings": ["https:\/\/github\\.com\/(?<depName>.*\/.*?)\/releases\/download\/(?<currentValue>.*?)\/"],
"matchStrings": [
"https://github\\.com/(?<depName>.*/.*?)/releases/download/(?<currentValue>.*?)/"
],
"datasourceTemplate": "github-releases"
},
{
"customType": "regex",
"fileMatch": "kustomization.yaml",
"matchStrings": ["https:\/\/raw.githubusercontent.com\/(?<depName>[^\/]*\/[^\/]*)\/(?<currentValue>.*?)\/"],
"matchStrings": [
"https://raw.githubusercontent.com/(?<depName>[^/]*/[^/]*)/(?<currentValue>.*?)/"
],
"datasourceTemplate": "github-tags"
}
]
Expand Down

0 comments on commit 106b824

Please sign in to comment.