Skip to content

Commit

Permalink
fix(renovate.json5): update allowedVersions regex and add versioning … (
Browse files Browse the repository at this point in the history
#294)

…for perlImages
  • Loading branch information
sidey79 authored Jan 19, 2025
2 parents b068866 + 5c1aba7 commit 0cdb8dc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,16 @@
"matchPackageNames": ["perl"],
"minimumReleaseAge": "3 days",
"automerge": true,
"allowedVersions": "/^(5\\.)36(\\.\\d)?(.*)$/"
"allowedVersions": "/^(5\\.)(36)(\\.\\d)/",
"versioning": "regex:^5\\.(?<major>[1-9][02468])\\.(?<minor>\\d+)$"
},
{
"groupName": "perlImagesMajor",
"matchDatasources": ["docker"],
"matchPackageNames": ["perl"],
"minimumReleaseAge": "14 days",
"allowedVersions": "/^(5\\.)([1-9][02468])(\\.\\d)?(.*)$/"
"allowedVersions": "/^5\\.([1-9][02468])(\\.\\d)?(.*)$/",
"versioning": "regex:^5\\.(?<major>[1-9][02468])\\.(?<minor>\\d+)$"
}
]
}

0 comments on commit 0cdb8dc

Please sign in to comment.