From c8ece6b40a5276439cda680640c465a082800e9e Mon Sep 17 00:00:00 2001 From: Ricky Heijnen Date: Wed, 24 Dec 2025 16:39:16 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Add=20Dependabot=20configuration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/dependabot.yml | 44 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..cf8bcbb --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,44 @@ +version: 2 + +updates: + # Docker base image updates + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "daily" + open-pull-requests-limit: 10 + labels: + - "dependencies" + commit-message: + prefix: "⬆️ [ Docker ] " + include: "scope" + # Rebase strategy: auto-rebase for cleaner history + rebase-strategy: "auto" + # Group minor and patch updates together + groups: + docker-minor-patch: + patterns: + - "*" + update-types: + - "minor" + - "patch" + + # GitHub Actions updates + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + open-pull-requests-limit: 5 + labels: + - "dependencies" + commit-message: + prefix: "⬆️ [ GitHub Actions ] " + include: "scope" + rebase-strategy: "auto" + groups: + github-actions: + patterns: + - "*" + update-types: + - "minor" + - "patch"