From 98cfeda5a5e96268f18f7ac5591f79d7ab20175b Mon Sep 17 00:00:00 2001 From: MarcoIeni <11428655+MarcoIeni@users.noreply.github.com> Date: Mon, 22 Jun 2026 10:43:33 +0200 Subject: [PATCH] add renovate configuration --- .github/workflows/renovate.json5 | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/renovate.json5 diff --git a/.github/workflows/renovate.json5 b/.github/workflows/renovate.json5 new file mode 100644 index 0000000..00889e7 --- /dev/null +++ b/.github/workflows/renovate.json5 @@ -0,0 +1,11 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["github>rust-lang/renovate"], + "packageRules": [ + // Disabling Rust dependencies because we are only interested in GitHub Actions for now. + { + "enabled": false, + "matchCategories": ["rust"] + } + ] +}