summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJon Parise <jon@pinterest.com>2022-03-20 08:32:50 -0700
committerGitHub <noreply@github.com>2022-03-20 08:32:50 -0700
commit5eaff410f8b9b4641a7b3f35a5db44aa1d9edb3d (patch)
tree2c682a8c3d4a47c3aecbdc3a90da3c874aa02a54 /.github
parent703ea837efc0bcdcf861513930707e439c19d2dc (diff)
downloadpymemcache-5eaff410f8b9b4641a7b3f35a5db44aa1d9edb3d.tar.gz
Ignore noisy dependency updates (#386)
We're only interested in automatic dependency updates for minor (not patch) pytest versions, and we don't need to track every incremental mypy update.
Diffstat (limited to '.github')
-rw-r--r--.github/dependabot.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 42b6c1e..bbd6ec7 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -9,3 +9,7 @@ updates:
directory: "/"
schedule:
interval: "daily"
+ ignore:
+ - dependency-name: "mypy"
+ - dependency-name: "pytest"
+ update-types: ["version-update:semver-patch"]