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 (
|
2017-03-18 08:49:27 +00:00
|
|
|
StatusSkipped = "skipped"
|
|
|
|
StatusPending = "pending"
|
|
|
|
StatusRunning = "running"
|
|
|
|
StatusSuccess = "success"
|
|
|
|
StatusFailure = "failure"
|
|
|
|
StatusKilled = "killed"
|
|
|
|
StatusError = "error"
|
|
|
|
StatusBlocked = "blocked"
|
|
|
|
StatusDeclined = "declined"
|
2015-09-30 01:21:17 +00:00
|
|
|
)
|
2015-10-27 20:03:37 +00:00
|
|
|
|
|
|
|
const (
|
|
|
|
RepoGit = "git"
|
|
|
|
RepoHg = "hg"
|
|
|
|
RepoFossil = "fossil"
|
|
|
|
RepoPerforce = "perforce"
|
|
|
|
)
|
2017-05-22 22:44:58 +00:00
|
|
|
|
|
|
|
const (
|
|
|
|
VisibilityPublic = "public"
|
|
|
|
VisibilityPrivate = "private"
|
|
|
|
VisibilityInternal = "internal"
|
|
|
|
)
|