From dd085ad0d8bf33aed0f0d03731be2e41882b961f Mon Sep 17 00:00:00 2001 From: jmeridth Date: Tue, 4 Jun 2024 18:55:31 -0500 Subject: [PATCH] chore: group dependabot updates when minor/patch leave major dependency updates to their own PR so they stand out and are tested correctly prefix the PRs with `chore(deps)` to adhere to conventional commits Signed-off-by: jmeridth --- .github/dependabot.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index a69deb7..9dbae21 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -9,6 +9,14 @@ updates: - "dependabot" - "dependencies" - "github-actions" + commit-message: + prefix: "chore(deps)" + groups: + dependencies: + applies-to: version-updates + update-types: + - "minor" + - "patch" - package-ecosystem: "bundler" directory: / schedule: @@ -18,3 +26,11 @@ updates: - "dependabot" - "dependencies" - "bundler" + commit-message: + prefix: "chore(deps)" + groups: + dependencies: + applies-to: version-updates + update-types: + - "minor" + - "patch"