chore: setup CI

This commit is contained in:
Julian Tölle 2024-05-05 00:27:34 +02:00
parent ab668ce310
commit 5f02b442b0
8 changed files with 181 additions and 0 deletions

23
renovate.json Normal file
View file

@ -0,0 +1,23 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":semanticCommits",
":semanticCommitTypeAll(chore)",
":semanticCommitScope(deps)",
":enableVulnerabilityAlerts"
],
"postUpdateOptions": [
"gomodTidy",
"gomodUpdateImportPaths"
],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["^\\.github\\/(?:workflows|actions)\\/.+\\.ya?ml$"],
"matchStrings": [
"(?:version|VERSION): (?<currentValue>.+) # renovate: datasource=(?<datasource>[a-z-]+) depName=(?<depName>.+)(?: lookupName=(?<lookupName>.+))?(?: versioning=(?<versioning>[a-z-]+))?"
]
}
]
}