mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
13 lines
228 B
TypeScript
13 lines
228 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const Pr = z.object(
|
|
{
|
|
sourceBranch: z.string().min(1),
|
|
number: z.number(),
|
|
state: z.string().min(1),
|
|
title: z.string().min(1),
|
|
},
|
|
{
|
|
description: 'Pull Request',
|
|
}
|
|
);
|