diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..2f064e4 --- /dev/null +++ b/renovate.json @@ -0,0 +1,26 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ], + "customManagers": [ + { + "customType": "regex", + "fileMatch": ["(^|/)CMakeLists\\.txt$", "\\.cmake$"], + "matchStrings": [ + "CPMAddPackage\\(\"(?[^@]+)@(?[^\"#]+)\"\\)" + ], + "datasourceTemplate": "github-releases", + "versioningTemplate": "semver" + }, + { + "customType": "regex", + "fileMatch": ["(^|/)CMakeLists\\.txt$", "\\.cmake$"], + "matchStrings": [ + "CPMAddPackage\\(\"(?[^@#]+)#(?[^\"]+)\"\\)" + ], + "datasourceTemplate": "github-tags", + "versioningTemplate": "loose" + } + ] +}