From cfb49a3e58cc224e0f2afc56922f77aa9a325ae5 Mon Sep 17 00:00:00 2001 From: Parker Brown <17183625+parkerbxyz@users.noreply.github.com> Date: Fri, 11 Jul 2025 12:31:03 -0700 Subject: [PATCH 1/3] Add multi-ecosystem group to Dependabot config --- .github/dependabot.yml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5226842..73609c3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,16 +1,22 @@ version: 2 + +multi-ecosystem-groups: + minor-and-patch: + schedule: + interval: 'quarterly' + updates: - package-ecosystem: 'npm' directory: '/' - schedule: - interval: 'monthly' + patterns: ['*'] + multi-ecosystem-group: 'minor-and-patch' groups: - production-dependencies: + production: dependency-type: 'production' update-types: - minor - patch - development-dependencies: + development: dependency-type: 'development' update-types: - minor @@ -21,8 +27,8 @@ updates: include: 'scope' - package-ecosystem: 'github-actions' directory: '/' - schedule: - interval: 'monthly' + patterns: ['*'] + multi-ecosystem-groups: 'minor-and-patch' groups: github-actions: update-types: From 3f1903e2050e3eca907488b6b37fe8b0951d7e50 Mon Sep 17 00:00:00 2001 From: Parker Brown <17183625+parkerbxyz@users.noreply.github.com> Date: Wed, 13 Aug 2025 09:03:24 -0700 Subject: [PATCH 2/3] Move commit-message config to multi-ecosystem group Commit-message settings for minor-and-patch updates were relocated from the npm update section to the multi-ecosystem-groups.minor-and-patch section in dependabot.yml. --- .github/dependabot.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 73609c3..2eea1e6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,6 +4,10 @@ multi-ecosystem-groups: minor-and-patch: schedule: interval: 'quarterly' + commit-message: + prefix: 'fix' + prefix-development: 'build' + include: 'scope' updates: - package-ecosystem: 'npm' @@ -21,10 +25,6 @@ updates: update-types: - minor - patch - commit-message: - prefix: 'fix' - prefix-development: 'build' - include: 'scope' - package-ecosystem: 'github-actions' directory: '/' patterns: ['*'] From 20749b729445f71fbe85e5014908e3b57e7ea7a5 Mon Sep 17 00:00:00 2001 From: Parker Brown <17183625+parkerbxyz@users.noreply.github.com> Date: Wed, 13 Aug 2025 09:29:03 -0700 Subject: [PATCH 3/3] Move `update-types` config for GitHub Actions Removed the 'groups' section and moved 'update-types' directly under the GitHub Actions configuration. --- .github/dependabot.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2eea1e6..eb28630 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -29,8 +29,6 @@ updates: directory: '/' patterns: ['*'] multi-ecosystem-groups: 'minor-and-patch' - groups: - github-actions: - update-types: - - minor - - patch + update-types: + - minor + - patch