From 81558dc776a5194fed4e2e036861febbb6b8afb7 Mon Sep 17 00:00:00 2001 From: Adrienne Stilp Date: Tue, 27 Feb 2024 16:51:33 -0800 Subject: [PATCH 1/2] Add a catch-all "all" group to dependabot updates --- .github/dependabot.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ff851d2e..037a03ac 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -29,3 +29,5 @@ updates: - "patch" dev-dependencies: dependency-type: "development" + all: + pattern: "*" From 79d9c8625c84a847a7a4fec213a442b19423e565 Mon Sep 17 00:00:00 2001 From: Adrienne Stilp Date: Tue, 27 Feb 2024 16:53:23 -0800 Subject: [PATCH 2/2] Switch to just grouped minor-patch updates "development" and "production" didn't seem to work the way I intended, and the documentation isn't clear. See stack overflow: https://stackoverflow.com/questions/70290259/what-do-production-and-development-dependency-groups-mean-in-dependabot --- .github/dependabot.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 037a03ac..834f348a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -22,12 +22,9 @@ updates: open-pull-requests-limit: 20 groups: - prod-dependencies-minor-patch: - dependency-type: "production" + minor-patch: update-types: - - "minor" - - "patch" - dev-dependencies: - dependency-type: "development" - all: - pattern: "*" + - "minor" + - "patch" + patterns: + - "*"