woodpecker/web/src/lib/api/types/webhook.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
136 B
TypeScript

export enum WebhookEvents {
Push = 'push',
Tag = 'tag',
PullRequest = 'pull_request',
Deploy = 'deployment',
Cron = 'cron',
}