drone/types/events.go
2023-09-07 11:07:49 +01:00

13 lines
255 B
Go

package types
// Hook event constants.
const (
EventCron = "cron"
EventCustom = "custom"
EventPush = "push"
EventPullRequest = "pull_request"
EventTag = "tag"
EventPromote = "promote"
EventRollback = "rollback"
)