DepConfig
class: DepConfig
class DepConfig(BaseModel):
name: str
from_config: str
include_destinations: list[str] = ...
exclude_destinations: list[str] = ...
updates: list[UpdateEntry]
verify: VerifyConfig = ...
pr: PRConfig
auto_merge: AutoMergeConfig | None = None
Fields
| Field |
Type |
Default |
Since |
| name |
str |
- |
0.4.0 |
| from_config |
str |
- |
0.4.0 |
| include_destinations |
list[str] |
... |
0.4.0 |
| exclude_destinations |
list[str] |
... |
0.4.0 |
| updates |
list[UpdateEntry] |
- |
0.4.0 |
| verify |
VerifyConfig |
... |
0.4.0 |
| pr |
PRConfig |
- |
0.4.0 |
Changes
| Version |
Change |
| 0.7.0 |
added optional field 'auto_merge' (default: None) |
| 0.4.1 |
added base class 'BaseModel' |
| 0.4.0 |
Made public |