woodpecker/web/src/lib/api/types/webhook.ts
[X] b4d89a1cce
Add ability to trigger manual builds (#1156)
closes #83 
closes #240 

Co-authored-by: Anbraten <anton@ju60.de>
Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com>
Co-authored-by: 6543 <6543@obermui.de>
2022-09-27 11:05:00 +02:00

9 lines
157 B
TypeScript

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