From f5721f643c08c80bb2c08df1d4820b0a0684da31 Mon Sep 17 00:00:00 2001 From: Sergei Kolobov Date: Fri, 18 Oct 2024 01:00:55 +0200 Subject: [PATCH] chore: update Renovate bot config - Schedule updates only on weekends (reduce noise) - Always add `dependencies` label to PRs - Migrate config to JSON5 format - Move the file to `.github` subdir to reduce clutter at the root --- .github/renovate.json5 | 5 +++++ renovate.json | 6 ------ 2 files changed, 5 insertions(+), 6 deletions(-) create mode 100644 .github/renovate.json5 delete mode 100644 renovate.json diff --git a/.github/renovate.json5 b/.github/renovate.json5 new file mode 100644 index 0000000..743fd45 --- /dev/null +++ b/.github/renovate.json5 @@ -0,0 +1,5 @@ +{ + $schema: "https://docs.renovatebot.com/renovate-schema.json", + extends: ["config:recommended", "schedule:weekends"], + labels: ["dependencies"], +} diff --git a/renovate.json b/renovate.json deleted file mode 100644 index 5db72dd..0000000 --- a/renovate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:recommended" - ] -}