From cb4dbfb9fbff26a30f936662ea247c6e24fa007a Mon Sep 17 00:00:00 2001 From: "platauto-bot[bot]" <218022298+platauto-bot[bot]@users.noreply.github.com> Date: Fri, 4 Jul 2025 14:56:23 +0000 Subject: [PATCH 1/2] Add dependabot.yaml to configure Dependabot --- .github/dependabot.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 0000000..76057a1 --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,22 @@ +version: 2 +updates: + - package-ecosystem: "bundler" + directory: "/" + schedule: + interval: "weekly" + pull-request-branch-name: + separator: "-" + groups: + bundler-dependencies: + patterns: + - "*" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + pull-request-branch-name: + separator: "-" + groups: + github-actions-dependencies: + patterns: + - "*" From 0b5a3e3e009c2d34e1de7af8941da5ac65d2e65d Mon Sep 17 00:00:00 2001 From: "platauto-bot[bot]" <218022298+platauto-bot[bot]@users.noreply.github.com> Date: Mon, 14 Jul 2025 09:50:15 +0000 Subject: [PATCH 2/2] Update dependabot.yaml to configure Dependabot --- .github/dependabot.yaml | 48 ++++++++++++++++++++++++----------------- 1 file changed, 28 insertions(+), 20 deletions(-) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 76057a1..1f10f10 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -1,22 +1,30 @@ version: 2 updates: - - package-ecosystem: "bundler" - directory: "/" - schedule: - interval: "weekly" - pull-request-branch-name: - separator: "-" - groups: - bundler-dependencies: - patterns: - - "*" - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "weekly" - pull-request-branch-name: - separator: "-" - groups: - github-actions-dependencies: - patterns: - - "*" +- package-ecosystem: bundler + directory: / + schedule: + interval: weekly + pull-request-branch-name: + separator: "-" + groups: + bundler-dependencies: + patterns: + - "*" + ignore: + - update-types: + - version-update:semver-major + - dependency-name: "*" +- package-ecosystem: github-actions + directory: / + schedule: + interval: weekly + pull-request-branch-name: + separator: "-" + groups: + github-actions-dependencies: + patterns: + - "*" + ignore: + - update-types: + - version-update:semver-major + - dependency-name: "*"