From 7a377e4e0b7db4c9e772307bf04842b6a2411c84 Mon Sep 17 00:00:00 2001 From: RahulGautamSingh Date: Fri, 7 Oct 2022 22:24:24 +0530 Subject: [PATCH] chore: switch from dependabot to Renovate (#5761) * chore: switch from dependabot to Renovate * Update renovate.json * Apply suggestions * apply suggestions * fix: format renoavte.json * Back to ignoreDeps, alas Co-authored-by: Josh Goldberg --- .github/dependabot.yml | 17 ----------------- .github/renovate.json | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 17 deletions(-) delete mode 100644 .github/dependabot.yml create mode 100644 .github/renovate.json 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 +}