File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+
14version : 2
25updates :
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"
You can’t perform that action at this time.
0 commit comments