woodpecker/model/const.go

19 lines
323 B
Go
Raw Normal View History

2015-09-30 01:21:17 +00:00
package model
const (
EventPush = "push"
EventPull = "pull_request"
EventTag = "tag"
EventDeploy = "deployment"
2015-09-30 01:21:17 +00:00
)
const (
StatusSkipped = "skipped"
StatusPending = "pending"
StatusRunning = "running"
StatusSuccess = "success"
StatusFailure = "failure"
StatusKilled = "killed"
StatusError = "error"
)