From 89008b0a273623329017e54eebf66d447df2ef25 Mon Sep 17 00:00:00 2001 From: Niklas Zender Date: Tue, 24 Mar 2026 19:54:16 +0100 Subject: [PATCH] chore: add engineering standards (dependabot, rust docker) --- .github/dependabot.yml | 59 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..ecc2a17 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,59 @@ +# 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 + + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "daily" + timezone: "Europe/Berlin" + open-pull-requests-limit: 10 + 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