Skip to content

Commit b07c7e7

Browse files
authored
Merge pull request #4 from IDilettant/dependabot-config
Add Dependabot config
2 parents feb4611 + ca8f26a commit b07c7e7

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

.github/dependabot.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
version: 2
3+
updates:
4+
# === GitHub Actions ===
5+
- package-ecosystem: github-actions
6+
directory: /
7+
schedule:
8+
interval: weekly
9+
labels: [dependencies, automated, actions]
10+
groups:
11+
actions-minor-patch:
12+
update-types: [minor, patch]
13+
actions-major:
14+
update-types: [major]
15+
# === Python dev (pip) ===
16+
- package-ecosystem: pip
17+
directory: /
18+
schedule:
19+
interval: weekly
20+
labels: [dependencies, automated, dev]
21+
groups:
22+
pip-dev-minor-patch:
23+
patterns:
24+
- pytest*
25+
- flake8*
26+
- black
27+
- isort
28+
- mypy*
29+
- coverage*
30+
- tox*
31+
- ruff
32+
- pylint*
33+
- bandit
34+
- pre-commit
35+
- sphinx*
36+
- mkdocs*
37+
update-types: [minor, patch]
38+
# === Python runtime (pip) ===
39+
- package-ecosystem: pip
40+
directory: /
41+
schedule:
42+
interval: weekly
43+
labels: [dependencies, automated, runtime]
44+
groups:
45+
pip-runtime-minor-patch:
46+
update-types: [minor, patch]
47+
# === Python (uv) ===
48+
- package-ecosystem: uv
49+
directory: /
50+
schedule:
51+
interval: weekly
52+
labels: [dependencies, automated, uv]

0 commit comments

Comments
 (0)