From 17bd73bf5667740c1a1bae8ef43e1205d5c5cc7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Zl=C3=A1mal?= Date: Sat, 5 Mar 2022 12:17:04 -0600 Subject: [PATCH] Configure Renovate bot History repeats: I am configuring Renovate bot again. Dependabot is great and it's awesome that it's integrated into GitHub natively. Unfortunately, it does not support Yarn Berry and seems like it won't anytime soon (https://github.com/dependabot/dependabot-core/issues/1297). I would like to configure Renovate bot instead which should support Yarn Berry without many problems and therefore unblock our Yarn upgrade (https://github.com/adeira/universe/pull/2154). At this moment I would like to keep both Dependabot and Renovate bot enabled to see if everything works correctly, and eventually I'd like to turn off Dependabot completely or limit it to things Renovate bot doesn't support. Closes: https://github.com/adeira/universe/pull/3799 --- .github/renovate.json5 | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/renovate.json5 diff --git a/.github/renovate.json5 b/.github/renovate.json5 new file mode 100644 index 0000000000..17b210aec5 --- /dev/null +++ b/.github/renovate.json5 @@ -0,0 +1,14 @@ +{ + extends: ['config:base'], + ignoreDeps: [ + // Pure ESM, see: https://github.com/adeira/universe/issues/2341 + 'chalk', + 'hast-util-to-html', + 'refractor', + 'strip-ansi', + ], + labels: ['dependencies', 'automerge'], + rangeStrategy: 'bump', + semanticCommits: 'disabled', + updateInternalDeps: true, +}