diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 14a7ac3..4b3ae2d 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -1,7 +1,7 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "config:base", + "config:recommended", ":dependencyDashboard", ":disableRateLimiting", "docker:enableMajor", @@ -12,31 +12,36 @@ "github>deedee-ops/nixlab//.github/renovate/autoMerge.json5", "github>deedee-ops/nixlab//.github/renovate/commitMessage.json5", "github>deedee-ops/nixlab//.github/renovate/labels.json5", - "github>deedee-ops/nixlab//.github/renovate/semanticCommits.json5" + "github>deedee-ops/nixlab//.github/renovate/semanticCommits.json5", ], "gitAuthor": "robodexo2000 <150604236+robodexo2000[bot]@users.noreply.github.com>", "dependencyDashboardTitle": "Renovate Dashboard 🤖", - "suppressNotifications": ["prEditedNotification", "prIgnoreNotification"], + "suppressNotifications": [ + "prEditedNotification", + "prIgnoreNotification", + ], "commitBodyTable": true, "rebaseWhen": "auto", - "nix": { - "enabled": "true", + "enabled": true, }, - "lockFileMaintenance": { - "enabled": "true", - "automerge": "true", - "schedule": [ "before 4am on Sunday" ], + "enabled": true, + "automerge": true, + "schedule": [ + "before 4am on Sunday", + ], }, - - "regexManagers": [ + "customManagers": [ { - fileMatch: ["^modules/.*\\.nix$"], - matchStrings: [ - 'image *= *"(?.*?):(?.*?)(@(?sha256:[a-f0-9]+))?"', + "customType": "regex", + "fileMatch": [ + "^modules/.*\\.nix$", + ], + "matchStrings": [ + "image *= *\"(?.*?):(?.*?)(@(?sha256:[a-f0-9]+))?\"", ], - datasourceTemplate: "docker", - } - ] + "datasourceTemplate": "docker", + }, + ], }