From 4ff4072df3f7eb2ec95ad6dd16babaaa1a9a9ae7 Mon Sep 17 00:00:00 2001 From: anthonyshchang Date: Fri, 4 Jul 2025 17:06:49 +0200 Subject: [PATCH 1/2] Add Dependabot configuration for Bundler and npm --- .github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..17570ef --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +version: 2 +updates: + - package-ecosystem: "bundler" + directories: + - "/" + schedule: + interval: "weekly" + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly" From f58726b28ec48e4000d6d80057e32610bd0d3ef9 Mon Sep 17 00:00:00 2001 From: anthonyshchang Date: Fri, 4 Jul 2025 17:10:42 +0200 Subject: [PATCH 2/2] Fix dependabot bundler config directory key --- .github/dependabot.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 17570ef..d9acd7c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,8 +1,7 @@ version: 2 updates: - package-ecosystem: "bundler" - directories: - - "/" + directory: "/" schedule: interval: "weekly" - package-ecosystem: "npm"