From a9aaa60543f5111bd24bfe077dca97371a074c9c Mon Sep 17 00:00:00 2001 From: Andreas Pfeil Date: Thu, 12 Jun 2025 14:13:02 +0200 Subject: [PATCH] build: add renovate configuration for dependency management, disable dependabot --- .github/dependabot.yml | 4 ++++ renovate.json | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 renovate.json diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f28e82ab..3ad98b33 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,10 +6,14 @@ version: 2 updates: - package-ecosystem: "gradle" # See documentation for possible values + target-branch: "development" + open-pull-requests-limit: 0 # PRs disabled, we currently use Renovate directory: "/" # Location of package manifests schedule: interval: "weekly" - package-ecosystem: "github-actions" + target-branch: "development" + open-pull-requests-limit: 0 # PRs disabled, we currently use Renovate directory: "/" schedule: interval: "weekly" diff --git a/renovate.json b/renovate.json new file mode 100644 index 00000000..2ae73654 --- /dev/null +++ b/renovate.json @@ -0,0 +1,4 @@ +{ + "labels": ["dependencies"], + "baseBranches": ["development"] +}