woodpecker/web/src/lib/api/types/cron.ts
6543 383f273392
Add cron feature (#934)
https://woodpecker-ci.org/docs/usage/cron

Co-authored-by: Anbraten <anton@ju60.de>
Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com>
2022-09-01 00:36:32 +02:00

8 lines
113 B
TypeScript

export type Cron = {
id: number;
name: string;
branch: string;
schedule: string;
next_exec: number;
};