Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 42 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,44 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"customManagers": [
{
"customType": "regex",
"description": "Update libvirt package version for rel-2150-dev",
"managerFilePatterns": ["/features/sci/exec\\.config$/"],
"matchStrings": [
"LIBVIRT_VERSION=\"(?<currentValue>[^%]+)%2Bbp2150\""
],
"depNameTemplate": "gardenlinux/package-libvirt",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^(?<version>.+)\\+bp2150$",
"versioningTemplate": "loose",
"autoReplaceStringTemplate": "LIBVIRT_VERSION=\"{{{newValue}}}%2Bbp2150\""
},
{
"customType": "regex",
"description": "Update cloud-hypervisor-gl package version for rel-2150-dev",
"managerFilePatterns": ["/features/sci/exec\\.config$/"],
"matchStrings": [
"CLOUD_HYPERVISOR_VERSION=\"(?<currentValue>[^%]+)%2Bbp2150\""
],
"depNameTemplate": "gardenlinux/package-cloud-hypervisor-gl",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^(?<version>.+)\\+bp2150$",
"versioningTemplate": "loose",
"autoReplaceStringTemplate": "CLOUD_HYPERVISOR_VERSION=\"{{{newValue}}}%2Bbp2150\""
},
{
"customType": "regex",
"description": "Update edk2-cloud-hypervisor-gl package version for rel-2150-dev",
"managerFilePatterns": ["/features/sci/exec\\.config$/"],
"matchStrings": [
"EDK2_VERSION=\"(?<currentValue>[^%]+)%2Bbp2150\""
],
"depNameTemplate": "gardenlinux/package-edk2-cloud-hypervisor-gl",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^(?<version>.+)\\+bp2150$",
"versioningTemplate": "loose",
"autoReplaceStringTemplate": "EDK2_VERSION=\"{{{newValue}}}%2Bbp2150\""
}
]
}