diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 6f306092e36..00000000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,17 +0,0 @@ -version: 2 -updates: - - package-ecosystem: github-actions - directory: / - ignore: - - dependency-name: cypress - schedule: - interval: weekly - day: monday - - - package-ecosystem: npm - directory: / - schedule: - interval: weekly - day: monday - ignore: - - dependency-name: cypress diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 00000000000..dcf569f2df6 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,19 @@ +{ + "automerge": true, + "enabledManagers": ["github-actions", "npm"], + "ignoreDeps": ["cypress"], + "internalChecksFilters": "strict", + "labels": ["dependencies"], + "packageRules": [ + { + "addLabels": ["github-actions"], + "manager": "github-actions" + }, + { + "addLabels": ["javascript"], + "manager": "npm" + } + ], + "matchUpdateTypes": ["minor", "patch", "pin", "digest"], + "stabilityDays": 3 +}