Skip to content

Commit 9e7fcb1

Browse files
authored
chore: revise dependabot config about group patterns (#341)
- removes the wildcard (`*`) in `patterns` values. - includes all docs' deps in "docs" group
1 parent be51b8d commit 9e7fcb1

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,24 @@ updates:
2020
groups:
2121
pip:
2222
patterns:
23-
- "clang-tools*"
24-
- "cpp-linter*"
23+
- "clang-tools"
24+
- "cpp-linter"
2525
dev:
2626
patterns:
27-
- "mypy*"
28-
- "pre-commit*"
29-
- "ruff*"
27+
- "mypy"
28+
- "pre-commit"
29+
- "ruff"
3030
update-types:
3131
- "major"
3232
- "minor"
3333
docs:
3434
patterns:
35-
- "markdown-gfm-admonition*"
36-
- "mkdocs*"
37-
- "pyyaml*"
35+
- "mkdocs-gen-files"
36+
- "markdown-gfm-admonition"
37+
- "mkdocs-include-markdown-plugin"
38+
- "mkdocs-material"
39+
- "mkdocs"
40+
- "pyyaml"
3841
update-types:
3942
- "major"
4043
- "minor"

0 commit comments

Comments
 (0)