Skip to content

Commit 35be28b

Browse files
authored
Add grouping for pip dependencies, Docker and Github Actions Dependabot configs
1 parent fa8c6cb commit 35be28b

File tree

1 file changed

+24
-7
lines changed

1 file changed

+24
-7
lines changed

.github/dependabot.yml

+24-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,28 @@
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/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5-
61
version: 2
72
updates:
8-
- package-ecosystem: "pip" # See documentation for possible values
9-
directory: "/" # Location of package manifests
3+
- package-ecosystem: "pip"
4+
schedule:
5+
interval: "weekly"
6+
groups:
7+
production-security-updates:
8+
applies-to: security-updates
9+
dependency-type: "production"
10+
update-types:
11+
- "major"
12+
- "patch"
13+
production-version-updates:
14+
applies-to: version-updates
15+
dependency-type: "production"
16+
update-types:
17+
- "major"
18+
- "patch"
19+
development-dependencies:
20+
dependency-type: "development"
21+
22+
- package-ecosystem: "docker"
23+
schedule:
24+
interval: "weekly"
25+
26+
- package-ecosystem: "github-actions"
1027
schedule:
1128
interval: "weekly"

0 commit comments

Comments
 (0)