From 0e978979ab47cd898a88720a71c46b37783b0b05 Mon Sep 17 00:00:00 2001 From: a10zn8 Date: Mon, 18 May 2026 12:28:24 +0300 Subject: [PATCH] chore: add Dependabot configuration (#831) --- .github/dependabot.yml | 79 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..6b325c77 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,79 @@ +# Dependabot configuration +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file +version: 2 + +updates: + # Gradle — main module + - package-ecosystem: "gradle" + directory: "/" + schedule: + interval: "weekly" + target-branch: "master" + open-pull-requests-limit: 10 + labels: + - "dependencies" + - "gradle" + groups: + gradle-minor-and-patch: + update-types: + - "minor" + - "patch" + + # Gradle — foundation module + - package-ecosystem: "gradle" + directory: "/foundation" + schedule: + interval: "weekly" + target-branch: "master" + open-pull-requests-limit: 5 + labels: + - "dependencies" + - "gradle" + groups: + gradle-minor-and-patch: + update-types: + - "minor" + - "patch" + + # Gradle — buildSrc (build logic / plugins) + - package-ecosystem: "gradle" + directory: "/buildSrc" + schedule: + interval: "weekly" + target-branch: "master" + open-pull-requests-limit: 5 + labels: + - "dependencies" + - "gradle" + groups: + gradle-minor-and-patch: + update-types: + - "minor" + - "patch" + + # Docker — base image in Dockerfile + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "weekly" + target-branch: "master" + open-pull-requests-limit: 5 + labels: + - "dependencies" + - "docker" + + # GitHub Actions — workflow action versions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + target-branch: "master" + open-pull-requests-limit: 5 + labels: + - "dependencies" + - "github-actions" + groups: + actions-minor-and-patch: + update-types: + - "minor" + - "patch"