From be99b63a9eb3e2f9f32187d4d89e15d6838e7a3b Mon Sep 17 00:00:00 2001 From: Christian Stewart Date: Wed, 18 Oct 2023 14:56:12 -0700 Subject: [PATCH] .github: use renovate instead of dependabot Use renovate bot which supports batched PRs. This will create a single PR for all of your dependencies that is updated by the bot continuously as new changes are added, instead of having one pull request per dependency which is very noisy and pollutes the Pull Requests tab. Signed-off-by: Christian Stewart --- .github/renovate.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 00000000..72d5f553 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,10 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + ":semanticPrefixFixDepsChoreOthers", + ":ignoreModulesAndTests", + "group:all", + "workarounds:all" + ], + "branchConcurrentLimit": 0 +}