From 1ce7e5cc255037eb9636457f7cf87b53e5f792b8 Mon Sep 17 00:00:00 2001 From: GeiserX <9169332+GeiserX@users.noreply.github.com> Date: Wed, 15 Apr 2026 01:15:09 +0200 Subject: [PATCH] Add Dependabot configuration --- .github/dependabot.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..1cded88 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,28 @@ +version: 2 + +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" + day: "monday" + open-pull-requests-limit: 10 + commit-message: + prefix: "ci" + labels: + - "ci" + - "automated" + groups: + minor-and-patch: + patterns: + - "*" + update-types: + - "minor" + - "patch" + actions-security: + applies-to: security-updates + patterns: + - "*" + ignore: + - dependency-name: "*" + update-types: ["version-update:semver-major"]