Skip to content

Commit 2728ed3

Browse files
authored
chore: group dependency updates with exclude-patterns (#353)
* chore: group dependency updates with exclude-patterns * use wildcard patterns
1 parent 7dacd91 commit 2728ed3

File tree

1 file changed

+17
-16
lines changed

1 file changed

+17
-16
lines changed

.github/dependabot.yml

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,23 @@ updates:
1818
schedule:
1919
interval: "daily"
2020
groups:
21-
pip:
21+
org:
22+
# updates about org-maintained packages
2223
patterns:
23-
- "clang-tools"
24-
- "cpp-linter"
24+
- "*"
25+
exclude-patterns:
26+
- "mypy*"
27+
- "pre-commit*"
28+
- "ruff*"
29+
- "mkdocs*"
30+
- "pyyaml*"
2531
dev:
32+
# updates about everything else (dev and docs)
2633
patterns:
27-
- "mypy"
28-
- "pre-commit"
29-
- "ruff"
30-
applies-to: "security-updates"
31-
docs:
32-
patterns:
33-
- "mkdocs-gen-files"
34-
- "markdown-gfm-admonition"
35-
- "mkdocs-include-markdown-plugin"
36-
- "mkdocs-material"
37-
- "mkdocs"
38-
- "pyyaml"
39-
applies-to: "security-updates"
34+
- "*"
35+
exclude-patterns:
36+
- "clang-tools*"
37+
- "cpp-linter*"
38+
update-types:
39+
- major
40+
- minor

0 commit comments

Comments
 (0)