mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 13:38:32 +00:00
13 lines
311 B
TypeScript
13 lines
311 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const BitriseStep = z.record(z.string(), z.unknown());
|
|
|
|
export const BitriseWorkflow = z.object({
|
|
steps: z.array(BitriseStep),
|
|
});
|
|
|
|
export const BitriseFile = z.object({
|
|
default_step_lib_source: z.string().optional(),
|
|
workflows: z.record(z.string(), BitriseWorkflow),
|
|
});
|