mirror of
https://github.com/harness/drone.git
synced 2025-05-11 22:50:11 +08:00
13 lines
255 B
Go
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"
|
|
)
|