From d84680b5cf445286b1db6efc2fa1e5b305500e15 Mon Sep 17 00:00:00 2001 From: Sam Bostock Date: Thu, 9 May 2024 13:40:17 -0400 Subject: [PATCH] Skip `rubocop` patch version updates We respond to RuboCop updates by updating our config accordingly (typically triaging new cops or changes to default config). Since patch version updates shouldn't contain any such changes, we should be able to skip them and avoid the toil of triaging the PRs and audit them when compiling release notes. --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f8ff2415..31e033d2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,6 +7,10 @@ updates: versioning-strategy: increase schedule: interval: daily + ignore: + - dependency-name: "rubocop" + # We only care about versions that might change config + update-types: ["version-update:semver-patch"] - package-ecosystem: github-actions directory: '/'