Skip to content

Commit a6448b0

Browse files
committed
Reinstate dependabot
1 parent 23d4b5f commit a6448b0

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/dependabot.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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"

0 commit comments

Comments
 (0)