From 48e07906456826dba10612d408357e5d23cefca1 Mon Sep 17 00:00:00 2001 From: Niklas Zender Date: Tue, 24 Mar 2026 17:53:02 +0100 Subject: [PATCH] chore: add engineering standards (dependabot, rust) --- .github/dependabot.yml | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..07d6a36 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,41 @@ +# This file is auto-generated by engineering-standards. +# Manual edits will be overwritten on the next sync cycle. +# To customise, update the template in engineering-standards/scripts/generate-dependabot.sh. +version: 2 +registries: + private-github: + type: git + url: https://github.com + username: x-access-token + password: ${{secrets.DEPENDABOT_SECRET}} +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + timezone: "Europe/Berlin" + groups: + actions: + patterns: ["*"] + commit-message: + prefix: "chore(deps): " + + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "daily" + timezone: "Europe/Berlin" + open-pull-requests-limit: 10 + registries: + - private-github + groups: + major: + update-types: ["major"] + minor-and-patch: + update-types: ["minor", "patch"] + commit-message: + prefix: "chore(deps): " + include: "scope" + cooldown: + default-days: 14 + semver-major-days: 14