Skip to content

Commit

Permalink
ci: create renovate.json
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerGillson authored Jun 5, 2024
1 parent 2515792 commit 2b6a6ed
Showing 1 changed file with 69 additions and 0 deletions.
69 changes: 69 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
"helpers:pinGitHubActionDigests",
":gitSignOff"
],
"addLabels": ["dependencies"],
"postUpdateOptions": [
"gomodTidy",
"gomodMassage"
],
"packageRules": [
{
"matchUpdateTypes": ["pin", "pinDigest", "digest"],
"addLabels": ["pin"],
"automerge": true
},
{
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"automerge": true
},
{
"matchManagers": ["gomod"],
"addLabels": ["go"],
"automerge": true
},
{
"matchManagers": ["github-actions"],
"addLabels": ["github_actions"],
"automerge": true
},
{
"matchManagers": ["crossplane"],
"addLabels": ["crossplane"],
"automerge": true
},
{
"matchManagers": ["dockerfile"],
"addLabels": ["docker"],
"automerge": true
},
{
"matchManagers": ["kustomize"],
"addLabels": ["kustomize"],
"automerge": true
},
{
"matchManagers": ["helm-values"],
"addLabels": ["helm_values"],
"automerge": true
}
],
"regexManagers": [
{
"fileMatch": [
"(^|\\/)Makefile$",
"(^|\\/)Dockerfile",
"(^|\\/).*\\.ya?ml$",
"(^|\\/).*\\.toml$",
"(^|\\/).*\\.sh$"
],
"matchStrings": [
"# renovate: datasource=(?<datasource>.+?) depName=(?<depName>.+?)\\s.*?_VERSION ?(\\??=|\\: ?) ?\\\"?(?<currentValue>.+?)?\\\"?\\s"
]
}
]
}

0 comments on commit 2b6a6ed

Please sign in to comment.