From 03af704fb420aad0e2b2d4a09877dcb67a7d9f5e Mon Sep 17 00:00:00 2001 From: Josh Radcliff Date: Thu, 6 Aug 2026 13:55:05 -0400 Subject: [PATCH] chore(deps): add renovate config Change-Id: I2ea68c885cc78125554e77af810ab970bf651b06 --- .github/renovate.json5 | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/renovate.json5 diff --git a/.github/renovate.json5 b/.github/renovate.json5 new file mode 100644 index 0000000..bc74ad7 --- /dev/null +++ b/.github/renovate.json5 @@ -0,0 +1,27 @@ +// Based partially on https://github.com/GoogleCloudPlatform/python-docs-samples/blob/main/renovate.json +{ + "extends": [ + // https://docs.renovatebot.com/presets-config/#configrecommended + "config:recommended", + "schedule:earlyMondays", + ":ignoreUnstable", + ], + // Apply label to PRs. + "labels": [ + "dependencies", + ], + // https://docs.renovatebot.com/configuration-options/#minimumreleaseage + "minimumReleaseAge": "3 days", + "dependencyDashboardLabels": [ + "type: process", + ], + "rebaseWhen": "behind-base-branch", + "semanticCommits": "enabled", + // Create PR for vulnerability alerts immediately. + "vulnerabilityAlerts": { + "labels": [ + "security" + ], + "minimumReleaseAge": null + }, +}