Skip to content

Commit

Permalink
renovate: initiated config
Browse files Browse the repository at this point in the history
  • Loading branch information
mvisonneau committed Sep 27, 2024
1 parent 6a46441 commit 78ee05d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions renovate.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: ["config:best-practices"],

postUpdateOptions: [
"gomodTidy", // Run go mod tidy after Go module updates.
],

packageRules: [
// Group all patch updates into a single PR, potentially set automerging on at some point
{
groupName: "all patch and minor",
matchPackageNames: ["*"],
matchUpdateTypes: ["minor", "patch", "digest"],
automerge: true,
},
],
}

0 comments on commit 78ee05d

Please sign in to comment.