2015-09-29 18:21:17 -07:00
|
|
|
package model
|
|
|
|
|
|
|
|
const (
|
|
|
|
EventPush = "push"
|
|
|
|
EventPull = "pull_request"
|
|
|
|
EventTag = "tag"
|
2015-10-26 16:04:18 -07:00
|
|
|
EventDeploy = "deployment"
|
2015-09-29 18:21:17 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
StatusSkipped = "skipped"
|
|
|
|
StatusPending = "pending"
|
|
|
|
StatusRunning = "running"
|
|
|
|
StatusSuccess = "success"
|
|
|
|
StatusFailure = "failure"
|
|
|
|
StatusKilled = "killed"
|
|
|
|
StatusError = "error"
|
|
|
|
)
|