Skip to content

Commit 377ebbd

Browse files
authored
fix(renovate): Allow any major update for buildimages (#47699)
### What does this PR do? The major version of buildimages is bound to gitlab pipeline Ids. As a consequence it can be huge, and this is a [defensive mechanism](https://docs.renovatebot.com/configuration-options/#maxmajorincrement) by default in renovate. ``` DEBUG: Skipping linux-images@v96944171-49f39179 because major increment 79548 exceeds maxMajorIncrement 500 ``` We need to deactivate this to reactivate the automatic buildimage bumps in the repo ### Motivation Reactivate buildimages bumps ### Describe how you validated your changes Configuration only, no update ### Additional Notes Co-authored-by: nicolas.schweitzer <nicolas.schweitzer@datadoghq.com>
1 parent 635210d commit 377ebbd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

renovate.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,13 @@
1616
},
1717
{
1818
"matchDepNames": ["linux-images"],
19+
"maxMajorIncrement": 0,
1920
"changelogUrl": "https://github.com/DataDog/datadog-agent-buildimages/commits/main",
2021
"schedule": ["* 2-6 * * 1-5"]
2122
},
2223
{
2324
"matchDepNames": ["windows-images"],
25+
"maxMajorIncrement": 0,
2426
"changelogUrl": "https://github.com/DataDog/datadog-agent-buildimages/commits/main",
2527
"schedule": ["* 2-6 2 * *"]
2628
},

0 commit comments

Comments
 (0)