Skip to content

Commit 045a93e

Browse files
authored
Group dependabot python dependencies and github actions updates (#426)
The version control workflow we use on Hyperion consists of squashing and merging PR on main so we should do the same for dependabot dependencies updates.
1 parent bc915a3 commit 045a93e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/dependabot.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,29 @@ updates:
88
directory: "/"
99
schedule:
1010
interval: "monthly"
11+
groups:
12+
actions:
13+
applies-to: version-updates
14+
patterns:
15+
- "*"
16+
1117

1218
# Maintain Python dependencies
1319
- package-ecosystem: "pip"
1420
directory: "/"
1521
schedule:
1622
interval: "monthly"
23+
groups:
24+
types-dependencies:
25+
applies-to: version-updates
26+
patterns:
27+
- "types-*"
28+
- "mypy"
29+
tests-dependencies:
30+
applies-to: version-updates
31+
patterns:
32+
- "pytest*"
33+
patch-dependencies:
34+
applies-to: version-updates
35+
update-types:
36+
- "patch"

0 commit comments

Comments
 (0)