From 11889838c532746a11063c3098e23b0cec3d5a0c Mon Sep 17 00:00:00 2001 From: Marcel Reuss Date: Tue, 18 Aug 2026 11:46:33 +0200 Subject: [PATCH 1/2] [CI] group dependabot updates and match the commit convention Minor and patch updates now arrive as one PR per group - dev-tools and runtime for composer, all actions for github-actions - instead of one PR per package. The default limit of five open PRs per ecosystem was reached with ten stale single-package PRs, which stopped dependabot from proposing anything new. Major updates still come in individually so they get reviewed on their own. commit-message prefixes make dependabot commits match the [TYPE] subjects used in this repository. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_018CTvnzcNYmFgm2HQcm821A --- .github/dependabot.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a2f571e..6f5abf8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,12 +4,36 @@ updates: directory: / schedule: interval: weekly + open-pull-requests-limit: 10 labels: - dependencies + commit-message: + prefix: "[BUILD]" + groups: + dev-tools: + applies-to: version-updates + dependency-type: development + update-types: + - minor + - patch + runtime: + applies-to: version-updates + dependency-type: production + update-types: + - minor + - patch - package-ecosystem: github-actions directory: / schedule: interval: weekly + open-pull-requests-limit: 5 labels: - dependencies + commit-message: + prefix: "[CI]" + groups: + actions: + applies-to: version-updates + patterns: + - "*" From f58b81e093a6418df282db6dce3310372924667d Mon Sep 17 00:00:00 2001 From: Marcel Reuss Date: Wed, 19 Aug 2026 17:53:59 +0200 Subject: [PATCH 2/2] [CI] drop the commit-message prefixes from the dependabot config The [BUILD]/[CI] prefixes followed a team convention that does not belong in this repository - the merges on main are plain descriptive titles, and dependabot's default "Bump x from y to z" already matches that style. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_018CTvnzcNYmFgm2HQcm821A --- .github/dependabot.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 6f5abf8..1fc1a35 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,8 +7,6 @@ updates: open-pull-requests-limit: 10 labels: - dependencies - commit-message: - prefix: "[BUILD]" groups: dev-tools: applies-to: version-updates @@ -30,8 +28,6 @@ updates: open-pull-requests-limit: 5 labels: - dependencies - commit-message: - prefix: "[CI]" groups: actions: applies-to: version-updates