Skip to content

Commit

Permalink
Migrate config renovate.json5 (#4)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Nov 23, 2024
1 parent 935fc65 commit 3558004
Showing 1 changed file with 28 additions and 20 deletions.
48 changes: 28 additions & 20 deletions renovate.json5
Original file line number Diff line number Diff line change
@@ -1,31 +1,39 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
extends: [
'config:recommended',
],
"regexManagers": [
customManagers: [
{
"fileMatch": [
"^api/Makefile$"
customType: 'regex',
fileMatch: [
'^api/Makefile$',
],
"matchStrings": [
"go install (?<depName>[^@]+)@(?<currentValue>[0-9a-zA-Z\.]+)"
matchStrings: [
'go install (?<depName>[^@]+)@(?<currentValue>[0-9a-zA-Z.]+)',
],
"datasourceTemplate": "go"
datasourceTemplate: 'go',
},
{
"fileMatch": [
"^api/go.mod$"
customType: 'regex',
fileMatch: [
'^api/go.mod$',
],
"matchStrings": [
"\\sgo (?<currentValue>.+?)\\s"
matchStrings: [
'\\sgo (?<currentValue>.+?)\\s',
],
"depNameTemplate": "golang",
"datasourceTemplate": "docker"
}
depNameTemplate: 'golang',
datasourceTemplate: 'docker',
},
],
timezone: 'Europe/Brussels',
labels: [
'dependencies',
],
dependencyDashboardLabels: [
'dependencies',
],
schedule: [
'monthly',
],
"timezone":"Europe/Brussels",
"labels": ["dependencies"],
"dependencyDashboardLabels": ["dependencies"],
"schedule": ["monthly"]
}

0 comments on commit 3558004

Please sign in to comment.