Skip to content

Commit e3b4443

Browse files
committed
ci(dependabot.yml): update pip and github-actions config
1 parent 7e03130 commit e3b4443

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

.github/dependabot.yml

+13-4
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,25 @@
22
# package ecosystems to update and where the package manifests are located.
33
# Please see the documentation for all configuration options:
44
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5-
65
version: 2
76
updates:
7+
# Poetry dependencies
88
- package-ecosystem: "pip"
9-
directory: "/" # Location of package manifests
9+
directory: "/"
1010
schedule:
11-
interval: "daily"
12-
open-pull-requests-limit: 15
11+
interval: "weekly" # Options: "daily", "weekly", "monthly"
12+
commit-message:
13+
prefix: "build"
14+
include: "scope" # Optional, includes the dependency name in commit message
1315
groups:
1416
security-update:
1517
applies-to: security-updates
1618
patterns:
1719
- "*"
20+
# GitHub Actions dependencies
21+
- package-ecosystem: "github-actions"
22+
directory: "/.github/workflows"
23+
schedule:
24+
interval: "weekly"
25+
commit-message:
26+
prefix: "ci"

0 commit comments

Comments
 (0)