From 40d7c4683012bfa384d427f2db71e130727ccdf1 Mon Sep 17 00:00:00 2001 From: Aitor Perez <1515757+Zerpet@users.noreply.github.com> Date: Fri, 24 Oct 2025 12:45:21 +0100 Subject: [PATCH] feat: Configure Dependabot for NPM dependencies in This commit configures Dependabot to track and update NPM dependencies in `selenium/package.json`. Key changes include: - Daily updates for `main`, `v4.2.x`, `v4.1.x`, and `v4.0.x` branches. - A 3-day cooldown for minor and major version updates. - Grouping of minor and patch releases into a single pull request. --- .github/dependabot.yaml | 56 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 47b90a51532b..7fff5b124924 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -126,3 +126,59 @@ updates: versions: [ "[6.0,)" ] - dependency-name: "org.junit.jupiter:*" versions: [ "[6.0,)" ] + - package-ecosystem: "npm" + directory: "/selenium" + schedule: + interval: "daily" + target-branch: "main" + cooldown: + semver-minor-days: 3 + semver-major-days: 3 + groups: + minor-patch-updates: + applies-to: version-updates + update-types: + - "minor" + - "patch" + - package-ecosystem: "npm" + directory: "/selenium" + schedule: + interval: "daily" + target-branch: "v4.2.x" + cooldown: + semver-minor-days: 3 + semver-major-days: 3 + groups: + minor-patch-updates: + applies-to: version-updates + update-types: + - "minor" + - "patch" + - package-ecosystem: "npm" + directory: "/selenium" + schedule: + interval: "daily" + target-branch: "v4.1.x" + cooldown: + semver-minor-days: 3 + semver-major-days: 3 + groups: + minor-patch-updates: + applies-to: version-updates + update-types: + - "minor" + - "patch" + - package-ecosystem: "npm" + directory: "/selenium" + schedule: + interval: "daily" + target-branch: "v4.0.x" + cooldown: + semver-minor-days: 3 + semver-major-days: 3 + groups: + minor-patch-updates: + applies-to: version-updates + update-types: + - "minor" + - "patch"