woodpecker/web/src/lib/api/types/pipelineConfig.ts
qwerty287 f88c70b55e
Rename to pipeline in DB and JSONs (#1296)
Closes #1282 

Follow-up to #1224, addresses #745

- changes JSON fields
- adds migration to rename columns
- fixes some comments
2022-10-22 15:54:43 +02:00

7 lines
110 B
TypeScript

// A config for a pipeline.
export type PipelineConfig = {
hash: string;
name: string;
data: string;
};