From cd85994330fc170955963c84e69c9fca27d4b511 Mon Sep 17 00:00:00 2001 From: Pamella Bezerra Date: Mon, 17 Jun 2024 12:33:01 -0300 Subject: [PATCH] Disable dependabot updates for old webpack 4 tests --- .github/dependabot.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..6828d463 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,19 @@ +version: 2 +updates: + # Ignore all updates to the `tests` directory (old webpack 4 tests) + - package-ecosystem: "npm" + directory: "/tests" + schedule: + interval: "weekly" + ignore: + - dependency-name: "*" + + - package-ecosystem: "npm" + directory: "/tests_webpack" + schedule: + interval: "weekly" + + - package-ecosystem: "npm" + directory: "/examples" + schedule: + interval: "weekly"