From 65a7584eda6164980ddb8cf5372f0afa2a04c1ed Mon Sep 17 00:00:00 2001 From: Wilson Mun <30316250+wmundev@users.noreply.github.com> Date: Wed, 12 Nov 2025 05:55:10 +1100 Subject: [PATCH] feat: add automatic minor and patch upgrades to dependabot (#6053) * feat: add automatic minor and patch upgrades for npm packages used in axios * feat: bump up pr limit to 5 for dependency upgrades --------- Co-authored-by: Jay --- .github/dependabot.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 1009342..b641908 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,3 +8,23 @@ updates: - "*" # Group all Actions updates into a single larger pull request schedule: interval: "weekly" + # Upgrade for npm packages, minor and patch versions only + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 5 + groups: + production_dependencies: + dependency-type: "production" + update-types: + - "minor" + - "patch" + development_dependencies: + dependency-type: "development" + update-types: + - "minor" + - "patch" + ignore: + - dependency-name: "*" + update-types: ["version-update:semver-major"]