diff --git a/.github/renovatebot/devContainers.json5 b/.github/renovatebot/devContainers.json5 new file mode 100644 index 0000000..50515d4 --- /dev/null +++ b/.github/renovatebot/devContainers.json5 @@ -0,0 +1,16 @@ +{%- raw %} +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "customManagers": [ + { + "description": ["Process Devcontainer features"], + "customType": "regex", + "fileMatch": ["devcontainer.json$"], + "matchStrings": [ + 'datasource=(?\\S*)[\\s]+depName=(?\\S*)[\\s]+"\\w+":[\\s]+"(?[a-zA-Z0-9-_.]+)"' + ], + "versioningTemplate": 'regex:^v?(?\\d+)\\.(?\\d+)\\.?(?\\d+)?-?(?\\S+)?$', + }, + ] +} +{%- endraw %}