-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathdependabot.yml
More file actions
23 lines (23 loc) · 759 Bytes
/
dependabot.yml
File metadata and controls
23 lines (23 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
version: 2
updates:
# Configuration for python
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
time: "03:00"
# Disable all pull requests for Docker dependencies
open-pull-requests-limit: 4
reviewers:
- "christian-byrne"
ignore:
# Ignore updates to packages that start with 'torch'
# Wildcards match zero or more arbitrary characters
- dependency-name: "torch*"
# Ignore some updates to the 'express' package
# - dependency-name: "express"
# Ignore only new versions for 4.x and 5.x
# versions: ["4.x", "5.x"]
# For all packages, ignore all patch updates
- dependency-name: "*"
update-types: ["version-update:semver-patch"]