UNPKG

renovate

Version:

Automated dependency updates. Flexible so you don't need to be.

21 lines (20 loc) 515 B
/** * VelaPipelineConfiguration * * Spec: https://github.com/go-vela/types/releases/latest/download/schema.json * Docs: https://go-vela.github.io/docs/reference/yaml/ */ export interface VelaPipelineConfiguration { secrets?: { origin?: ObjectWithImageProp; }[]; services?: ObjectWithImageProp[]; stages?: Record<string, Stage>; steps?: ObjectWithImageProp[]; } export interface ObjectWithImageProp { image: string; } export interface Stage { steps: ObjectWithImageProp[]; }