dependabit / manifest/src / DependabitConfig
Type Alias: DependabitConfig
ts
type DependabitConfig = z.infer<typeof DependabitConfigSchema>;Defined in: packages/manifest/src/schema.ts:364
Root configuration object parsed from .dependabit.yml.
Config
Use When
Passing configuration to runtime components (Scheduler, Monitor, etc.) that need to respect per-dependency overrides.
Avoid When
Storing raw secret values — use secretEnvVar in AuthConfig to reference environment variables by name only.
Pitfalls
- YAML comments in the original file are lost after a
parseConfig → stringifyConfiground-trip. - The
versionfield must be the string"1"(not1or"1.0.0").