Skip to content

Commit

Permalink
Merge pull request ekristen#411 from ekristen/renovate/migrate-config
Browse files Browse the repository at this point in the history
chore(config): migrate renovate config
  • Loading branch information
ekristen authored Nov 10, 2024
2 parents 3e7bff6 + b847d62 commit 252ed56
Showing 1 changed file with 33 additions and 12 deletions.
45 changes: 33 additions & 12 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,57 @@
{
"extends": ["config:recommended"],
"extends": [
"config:recommended"
],
"packageRules": [
{
"matchManagers": ["dockerfile"],
"matchUpdateTypes": ["pin", "digest"],
"matchManagers": [
"dockerfile"
],
"matchUpdateTypes": [
"pin",
"digest"
],
"automerge": true,
"automergeStrategy": "squash"
},
{
"matchPackagePatterns": ["^golang.*"],
"groupName": "golang",
"groupSlug": "golang"
"groupSlug": "golang",
"matchPackageNames": [
"/^golang.*/"
]
},
{
"matchFileNames": [".github/workflows/*.yml"],
"matchDepTypes": ["action"],
"matchFileNames": [
".github/workflows/*.yml"
],
"matchDepTypes": [
"action"
],
"matchCurrentVersion": "!/^0/",
"automerge": true,
"automergeStrategy": "squash",
"labels": ["bot"],
"labels": [
"bot"
],
"commitMessageSuffix": " [release skip]"
},
{
"matchPackagePatterns": "aws-sdk-go",
"separateMinorPatch": true
"separateMinorPatch": true,
"matchPackageNames": [
"/aws-sdk-go/"
]
}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["^.github/workflows/.*"],
"matchStrings": ["go-version: (?<currentValue>.*?)\n"],
"fileMatch": [
"^.github/workflows/.*"
],
"matchStrings": [
"go-version: (?<currentValue>.*?)\n"
],
"depNameTemplate": "golang",
"datasourceTemplate": "docker"
}
Expand Down

0 comments on commit 252ed56

Please sign in to comment.