From 6dcb6fcf29ed3958b5af297e890f60c35093649f Mon Sep 17 00:00:00 2001 From: Kira Pilot Date: Fri, 29 Jul 2022 19:01:37 +0000 Subject: [PATCH] chore: fix yaml file config error --- .github/dependabot.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 33e8d2aca74a2..9b28b85b1137e 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -35,8 +35,10 @@ updates: prefix: "chore" labels: [] ignore: - update-types: - - version-update:semver-patch + # Ignore patch updates for all dependencies + - dependency-name: "*" + update-types: + - version-update:semver-patch - package-ecosystem: "npm" directory: "/site/" @@ -48,12 +50,15 @@ updates: prefix: "chore" labels: [] ignore: + # Ignore patch updates for all dependencies + - dependency-name: "*" + update-types: + - version-update:semver-patch # Ignore major updates to Node.js types, because they need to # correspond to the Node.js engine version - dependency-name: "@types/node" update-types: - version-update:semver-major - - version-update:semver-patch - package-ecosystem: "terraform" directory: "/examples/templates"