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
…for perlImages
  • Loading branch information
sidey79 committed Jan 19, 2025
1 parent b068866 commit 5c1aba7
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 5c1aba7

Please sign in to comment.