From 5eb7776eaf31cf35c991ef4ba7a7b1b91037580b Mon Sep 17 00:00:00 2001 From: Ryan Waskiewicz Date: Fri, 12 Aug 2022 08:55:38 -0400 Subject: [PATCH] chore(dependabot): ignore @types/node this commit configures dependabot to ignore `@types/node` version updates for node 18. we currently do not develop for this plugin using node 18, but get a pr from our friend dependabot at least once a week to upgrade to a new patch version. until we're on node 18, prevent dependabot from trying to upgrade this package --- .github/dependabot.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 34de0ff..94e2aa2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -11,3 +11,6 @@ updates: # Disable rebasing for pull requests, as having several open pull requests all get simultaneously rebased gets # noisy from a notification standpoint rebase-strategy: "disabled" + ignore: + - dependency-name: "@types/node" + versions: ["18"]