Skip to content

Commit a1ab4f5

Browse files
committed
chore: update dependabot config
1 parent a903ff8 commit a1ab4f5

1 file changed

Lines changed: 39 additions & 9 deletions

File tree

.github/dependabot.yml

Lines changed: 39 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,41 @@
1+
# Dependabot configuration for replane-python (Python SDK)
2+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
3+
14
version: 2
25
updates:
3-
- package-ecosystem: "pip"
4-
directory: "/"
5-
schedule:
6-
interval: "daily"
7-
open-pull-requests-limit: 10
8-
- package-ecosystem: "github-actions"
9-
directory: "/"
10-
schedule:
11-
interval: "daily"
6+
# Python dependencies (pip/pyproject.toml)
7+
- package-ecosystem: "pip"
8+
directory: "/"
9+
schedule:
10+
interval: "weekly"
11+
day: "monday"
12+
open-pull-requests-limit: 10
13+
groups:
14+
# Group dev dependencies together
15+
dev-dependencies:
16+
patterns:
17+
- "pytest*"
18+
- "ruff"
19+
- "mypy"
20+
- "sphinx*"
21+
- "furo"
22+
- "myst-parser"
23+
# Group minor and patch updates together
24+
minor-and-patch:
25+
patterns:
26+
- "*"
27+
update-types:
28+
- "minor"
29+
- "patch"
30+
labels:
31+
- "dependencies"
32+
33+
# GitHub Actions
34+
- package-ecosystem: "github-actions"
35+
directory: "/"
36+
schedule:
37+
interval: "weekly"
38+
day: "monday"
39+
labels:
40+
- "dependencies"
41+
- "github-actions"

0 commit comments

Comments
 (0)