Skip to content

Commit

Permalink
infra: allow dependabot to find requirement files at deeper depths
Browse files Browse the repository at this point in the history
  • Loading branch information
AbeCoull authored Jan 23, 2024
2 parents 19fddcb + 473333e commit a4fc1dd
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,55 @@ updates:
patterns:
- "*" # A wildcard that matches all dependencies in the package
# ecosystem. Note: using "*" may open a large pull request

- package-ecosystem: "pip"
# Files stored in repository for the base image
directory: "/base/jobs/docker/1.0/py3"
schedule:
interval: "weekly"
commit-message:
prefix: infra
groups:
# Specify a name for the group, which will be used in pull request titles
# and branch names
dev-dependencies:
# Define patterns to include dependencies in the group (based on
# dependency name)
patterns:
- "*" # A wildcard that matches all dependencies in the package
# ecosystem. Note: using "*" may open a large pull request

- package-ecosystem: "pip"
# Files stored in repository for the tensorflow image
directory: "/tensorflow/jobs/docker/2.13/py3/"
schedule:
interval: "weekly"
commit-message:
prefix: infra
groups:
# Specify a name for the group, which will be used in pull request titles
# and branch names
dev-dependencies:
# Define patterns to include dependencies in the group (based on
# dependency name)
patterns:
- "*" # A wildcard that matches all dependencies in the package
# ecosystem. Note: using "*" may open a large pull request

- package-ecosystem: "pip"
# Files stored in repository for the pytorch image
directory: "/pytorch/jobs/docker/2.0/py3/"
schedule:
interval: "weekly"
commit-message:
prefix: infra
groups:
# Specify a name for the group, which will be used in pull request titles
# and branch names
dev-dependencies:
# Define patterns to include dependencies in the group (based on
# dependency name)
patterns:
- "*" # A wildcard that matches all dependencies in the package
# ecosystem. Note: using "*" may open a large pull request

0 comments on commit a4fc1dd

Please sign in to comment.