From a731b729f1b8b5a3f688bcb6c78e54e81961355d Mon Sep 17 00:00:00 2001 From: Aaron Coburn Date: Mon, 12 Aug 2024 14:23:32 -0500 Subject: [PATCH] Ignore major version updates to typedoc-plugin-markdown and eslint --- .github/dependabot.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5546e0a0f..3e57de27c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,14 +4,17 @@ updates: - package-ecosystem: "npm" # Look for `package.json` and `lock` files in the `root` directory. directory: "/" - # Check the npm registry for updates every day (weekdays). schedule: interval: "weekly" + ignore: + - dependency-name: "eslint" + update-types: ["version-update:semver-major"] + - dependency-name: "typedoc-plugin-markdown" + update-types: ["version-update:semver-major"] # Enable version updates for the website tooling. - package-ecosystem: "pip" # Look for `package.json` and `lock` files in the `root` directory. directory: "/docs" - # Check the npm registry for updates every day (weekdays). schedule: interval: "weekly" # Enable version updates for our CI tooling. @@ -19,13 +22,11 @@ updates: # For GitHub Actions, setting the directory to / will check for workflow # files in .github/workflows. directory: "/" - # Check the npm registry for updates every day (weekdays). schedule: interval: "weekly" # Enable version updates for embedded demo app - package-ecosystem: "npm" # Look for `package.json` and `package-lock.json` files in the `e2e/browser/test-app` directory. directory: "/e2e/browser/test-app" - # Check the npm registry for updates every day (weekdays). schedule: interval: "weekly"