Skip to content

Commit

Permalink
ci: do not renovate dagger module go.mod (#16)
Browse files Browse the repository at this point in the history
The file is set up by dagger itself, and managed with "dagger develop".
We exclude it from the automatic maintenance.

Signed-off-by: Francesco Canovai <francesco.canovai@enterprisedb.com>
  • Loading branch information
fcanovai authored Sep 17, 2024
1 parent 6d4effa commit e8f3f87
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@
":labels(automated,no-issue)",
"customManagers:githubActionsVersions",
":automergeMinor",
":automergeDigest",
":automergeDigest"
],
"gomod": {
// Do not manage the dagger go.mod file
"ignorePaths": ["dagger/gotest/go.mod"],
},
"postUpdateOptions": [
"gomodTidy"
],
Expand Down Expand Up @@ -42,7 +46,7 @@
"patch",
"digest"
],
"groupName": "all non-major go dependencies",
"groupName": "all non-major go dependencies"
},
{
"matchDatasources": [
Expand All @@ -54,14 +58,14 @@
"matchUpdateTypes": [
"digest"
],
"groupName": "all cloudnative-pg daggerverse dependencies",
"groupName": "all cloudnative-pg daggerverse dependencies"
},
{
"matchUpdateTypes": [
"minor",
"patch"
],
"matchCurrentVersion": "!/^0/",
"matchCurrentVersion": "!/^0/"
}
]
}

0 comments on commit e8f3f87

Please sign in to comment.