From 8298054d286d602127cdbcda96c6570ad93187a8 Mon Sep 17 00:00:00 2001 From: Daniel Carrillo Date: Sat, 11 Apr 2026 19:49:05 +0200 Subject: [PATCH] chore: Add dependabot.yml --- .github/dependabot.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..99d446f --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,35 @@ +version: 2 +updates: + - package-ecosystem: 'npm' + directory: '/' + schedule: + interval: 'weekly' + groups: + # Group all npm dependencies for minor and patch updates + npm-minor-patch: + applies-to: version-updates + patterns: + - '*' + update-types: + - 'minor' + - 'patch' + ignore: + - dependency-name: '*' + update-types: ['version-update:semver-major'] + + - package-ecosystem: 'npm' + directory: '/status-page' + schedule: + interval: 'weekly' + groups: + # Group all npm dependencies for minor and patch updates + npm-minor-patch: + applies-to: version-updates + patterns: + - '*' + update-types: + - 'minor' + - 'patch' + ignore: + - dependency-name: '*' + update-types: ['version-update:semver-major']