Skip to content

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 → stringifyConfig round-trip.
  • The version field must be the string "1" (not 1 or "1.0.0").

Released under the MIT License.