2015-09-30 01:21:17 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
const (
|
|
|
|
EventPush = "push"
|
|
|
|
EventPull = "pull_request"
|
|
|
|
EventTag = "tag"
|
2015-10-26 23:04:18 +00:00
|
|
|
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"
|
|
|
|
)
|
2015-10-27 20:03:37 +00:00
|
|
|
|
|
|
|
const (
|
|
|
|
RepoGit = "git"
|
|
|
|
RepoHg = "hg"
|
|
|
|
RepoFossil = "fossil"
|
|
|
|
RepoPerforce = "perforce"
|
|
|
|
)
|