File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed
Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 1+ # To get started with Dependabot version updates, you'll need to specify which
2+ # package ecosystems to update and where the package manifests are located.
3+ # Please see the documentation for all configuration options:
4+ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+ version : 2
7+ updates :
8+ # Configuration for pip
9+ - package-ecosystem : " uv" # See documentation for possible values
10+ directory : " /" # Location of package manifests
11+ schedule :
12+ interval : " monthly"
13+ allow :
14+ # Allow only direct dependencies (in theory not indirect or sub-dependencies)
15+ - dependency-type : " direct"
16+ # for reference:
17+ # ignore:
18+ # # Ignore updates to packages that start with 'aws'
19+ # # Wildcards match zero or more arbitrary characters
20+ # - dependency-name: "aws*"
21+ # # Ignore some updates to the 'express' package
22+ # - dependency-name: "express"
23+ # # Ignore only new versions for 4.x and 5.x
24+ # versions: ["4.x", "5.x"]
25+ # Configuration for github-actions
26+ - package-ecosystem : " github-actions" # See documentation for possible values
27+ directory : " /" # Location of package manifests
28+ schedule :
29+ interval : " daily"
You can’t perform that action at this time.
0 commit comments