diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 517ea62..f32abe7 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -13,7 +13,7 @@ updates: assignees: - "Rakambda" schedule: - interval: "weekly" + interval: "daily" time: "05:00" timezone: "Europe/Paris" pull-request-branch-name: @@ -35,7 +35,7 @@ updates: # assignees: # - "Rakambda" # schedule: -# interval: "weekly" +# interval: "daily" # time: "05:00" # timezone: "Europe/Paris" # pull-request-branch-name: @@ -45,7 +45,7 @@ updates: assignees: - "Rakambda" schedule: - interval: "weekly" + interval: "daily" time: "05:00" timezone: "Europe/Paris" pull-request-branch-name: @@ -57,7 +57,7 @@ updates: assignees: - "Rakambda" schedule: - interval: "weekly" + interval: "daily" time: "05:00" timezone: "Europe/Paris" pull-request-branch-name: @@ -67,7 +67,7 @@ updates: # assignees: # - "Rakambda" # schedule: -# interval: "weekly" +# interval: "daily" # time: "05:00" # timezone: "Europe/Paris" # pull-request-branch-name: @@ -77,7 +77,7 @@ updates: assignees: - "Rakambda" schedule: - interval: "weekly" + interval: "daily" time: "05:00" timezone: "Europe/Paris" pull-request-branch-name: @@ -86,13 +86,17 @@ updates: restsharp: patterns: - "restsharp" - - "restsharp.serializers.newtonsoftjson" + - "restsharp.*" + opencvsharp4: + patterns: + - "opencvsharp4" + - "opencvsharp4.*" - package-ecosystem: "pip" directory: "/" assignees: - "Rakambda" schedule: - interval: "weekly" + interval: "daily" time: "05:00" timezone: "Europe/Paris" pull-request-branch-name: diff --git a/.github/renovate.json b/.github/renovate.json index 4febc5b..f3f8942 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,17 +1,52 @@ { + "$schema" : "https://docs.renovatebot.com/renovate-schema.json", "assignees" : [ "Rakambda" ], "extends" : [ "config:base" ], - "labels" : ["type: \uD83D\uDCDA dependencies"], - "enabledManagers": ["dockerfile", "nuget", "pip_requirements", "github-actions", "gradle-wrapper"], + "labels" : [ + "type: \uD83D\uDCDA dependencies" + ], + "enabledManagers" : [ + "dockerfile", + "nuget", + "pip_requirements", + "github-actions", + "gradle-wrapper" + ], "dependencyDashboard" : false, - "excludeCommitPaths": [".github/workflows/auto-approve-sync-files.yml"], - "ignorePaths": [ + "excludeCommitPaths" : [ ".github/workflows/auto-approve-sync-files.yml" ], - "timezone": "Europe/Paris", - "schedule": ["on saturday"] + "ignorePaths" : [ + ".github/workflows/auto-approve-sync-files.yml" + ], + "timezone" : "Europe/Paris", + "schedule" : [ + "before 5am" + ], + "packageRules" : [ + { + "matchManagers" : [ + "nuget" + ], + "groupName" : "RestSharp", + "matchPackagePatterns" : [ + "restsharp", + "restsharp.*" + ] + }, + { + "matchManagers" : [ + "nuget" + ], + "groupName" : "OpenCVSharp4", + "matchPackagePatterns" : [ + "opencvsharp4", + "opencvsharp4.*" + ] + } + ] }