Skip to content

Commit

Permalink
renovate: setup
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Meyer <[email protected]>
  • Loading branch information
katexochen committed Jan 4, 2024
1 parent 65895e6 commit a1b71c9
Showing 1 changed file with 81 additions and 0 deletions.
81 changes: 81 additions & 0 deletions renovate.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":preserveSemverRanges",
"helpers:pinGitHubActionDigests",
":separateMajorReleases",
":semanticCommitsDisabled",
],
"commitMessagePrefix": "deps:",
"commitMessageAction": "update",
"addLabels": [
"dependencies"
],
"postUpdateOptions": [
"gomodTidy",
"gomodUpdateImportPaths"
],
"prConcurrentLimit": 1,
"nix": {
"enabled": true,
},
"lockFileMaintenance": {
"enabled": true,
"commitMessageAction": "flake.lock: Update",
"commitMessagePrefix": null,
"schedule": ["before 4am"],
},
"packageRules": [
{
"matchManagers": ["gomod"],
"matchDepTypes": ["indirect"],
"enabled": true,
},
{
"groupName": "Go indirect dependencies",
"matchManagers": [
"gomod"
],
"matchDepTypes": [
"indirect"
],
"prPriority": -30,
},
{
"groupName": "Go dependencies",
"matchManagers": [
"gomod"
],
"matchDepTypes": [
"require"
],
"matchUpdateTypes": [
"minor",
"patch",
"pin",
"pinDigest",
"digest",
"lockFileMaintenance",
"rollback",
"bump",
],
},
{
"matchManagers": [
"github-actions"
],
"groupName": "GitHub action dependencies",
"matchUpdateTypes": [
"minor",
"patch",
"pin",
"pinDigest",
"digest",
"lockFileMaintenance",
"rollback",
"bump",
],
},
],
}

0 comments on commit a1b71c9

Please sign in to comment.