mirror of
https://github.com/renovatebot/renovate.git
synced 2025-03-12 23:36:57 +00:00
6 lines
142 B
TypeScript
6 lines
142 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const BitriseStepFile = z.object({
|
|
published_at: z.string(),
|
|
source_code_url: z.string().optional(),
|
|
});
|