Skip to content

Commit

Permalink
ci: update renovate config format
Browse files Browse the repository at this point in the history
  • Loading branch information
ekristen committed Feb 24, 2024
1 parent 625ea11 commit fde304d
Showing 1 changed file with 11 additions and 27 deletions.
38 changes: 11 additions & 27 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,50 +1,34 @@
{
"extends": [
"config:base"
],
"extends": ["config:recommended"],
"packageRules": [
{
"matchManagers": [
"dockerfile"
],
"matchUpdateTypes": [
"pin",
"digest"
],
"matchManagers": ["dockerfile"],
"matchUpdateTypes": ["pin", "digest"],
"automerge": true,
"automergeStrategy": "squash"
},
{
"matchPackagePatterns": [
"^golang.*"
],
"matchPackagePatterns": ["^golang.*"],
"groupName": "golang",
"groupSlug": "golang"
},
{
"matchFileNames": [
".github/workflows/*.yml"
],
"matchDepTypes": [
"action"
],
"matchFileNames": [".github/workflows/*.yml"],
"matchDepTypes": ["action"],
"matchCurrentVersion": "!/^0/",
"automerge": true,
"automergeStrategy": "squash",
"labels": ["bot"],
"commitMessageSuffix": " [release skip]"
}
],
"regexManagers": [
"customManagers": [
{
"fileMatch": [
"^.github/workflows/.*"
],
"matchStrings": [
"go-version: (?<currentValue>.*?)\n"
],
"customType": "regex",
"fileMatch": ["^.github/workflows/.*"],
"matchStrings": ["go-version: (?<currentValue>.*?)\n"],
"depNameTemplate": "golang",
"datasourceTemplate": "docker"
}
]
}
}

0 comments on commit fde304d

Please sign in to comment.