Skip to content

Commit 26b3a3b

Browse files
authored
Restrict renovate updates to main branch only (wip)
1 parent a81d798 commit 26b3a3b

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed
Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,17 @@
1616
"{{baseBranch}}" // Add branch name as label
1717
],
1818

19-
// Branch configuration: process main branch and release branches from v0.5 onwards
20-
"baseBranchPatterns": [ "main", "/^release-v0\\.(\\d{2,}|[5-9])$/", "/^release-v[1-9]\\d*\\.\\d+$/" ],
19+
// // Branch configuration: process main branch and release branches from v0.5 onwards
20+
// "baseBranchPatterns": [ "main", "/^release-v0\\.(\\d{2,}|[5-9])$/", "/^release-v[1-9]\\d*\\.\\d+$/" ],
21+
22+
// [WIP] Branch configuration: temporarily process only the main branch, to prevent Mintmaker timeouts
23+
"baseBranchPatterns": [ "main" ],
2124

2225
// Disable artifact error status checks due to Mintmaker GitHub App lacking statuses=write permission
2326
"statusCheckNames": {
2427
"artifactError": null
2528
},
26-
29+
2730
"packageRules": [
2831
{
2932
// Global rule: All major updates get special treatment
@@ -46,7 +49,7 @@
4649
"matchManagers": [ "gomod" ],
4750
"matchDepNames": [ "!go", "!golang", "!docker.io/library/golang", "!registry.access.redhat.com/ubi9/go-toolset" ], // Exclude go directive - it goes to "go version" group
4851
"groupName": "go modules",
49-
"postUpdateOptions": ["gomodUpdateImportPaths"], // MintMaker compatibility: Disable gomodTidy execution (Mintmaker bot has not enough permissions to run it)
52+
"postUpdateOptions": [ "gomodUpdateImportPaths" ], // MintMaker compatibility: Disable gomodTidy execution (Mintmaker bot has not enough permissions to run it)
5053
"schedule": [ "before 4am" ] // MintMaker compatibility: Override mintmaker default weekly scheduling
5154
},
5255
{

0 commit comments

Comments
 (0)