From b05d6c89e9ae064aa9d77c0a0e9df23cca62e119 Mon Sep 17 00:00:00 2001 From: Jonathan Yu Date: Sat, 10 Jul 2021 16:54:08 +0000 Subject: [PATCH] chore: update dependabot version ignores * Open pull requests for major version updates for GitHub Actions * Ignore version updates for Node.js types --- .github/dependabot.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5b0a9e73d..54390f9de 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,10 +9,16 @@ updates: commit-message: prefix: "chore" ignore: - # These actions deliver the latest versions by updating the - # major release tag, so handle updates manually + # These actions deliver the latest versions by updating the major + # release tag, so ignore minor and patch versions - dependency-name: "actions/*" + update-types: + - version-update:semver-minor + - version-update:semver-patch - dependency-name: "marocchino/sticky-pull-request-comment" + update-types: + - version-update:semver-minor + - version-update:semver-patch - package-ecosystem: "npm" directory: "/" @@ -21,7 +27,10 @@ updates: time: "06:00" timezone: "America/Chicago" ignore: + # Ignore major updates to Node.js types, because they need to + # correspond to the Node.js engine version - dependency-name: "@types/node" - versions: ["15.x", "14.x", "13.x"] + update-types: + - version-update:semver-major commit-message: prefix: "chore"