chore: setup CI (#1)

This commit is contained in:
Julian Tölle 2024-05-05 00:37:08 +02:00 committed by GitHub
parent ab668ce310
commit 2db1c01a62
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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-]+))?"
]
}
]
}