2015-09-30 03:21:17 +02:00
|
|
|
package model
|
|
|
|
|
|
|
|
const (
|
|
|
|
EventPush = "push"
|
|
|
|
EventPull = "pull_request"
|
|
|
|
EventTag = "tag"
|
2015-10-27 01:04:18 +02:00
|
|
|
EventDeploy = "deployment"
|
2015-09-30 03:21:17 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2017-03-18 10:49:27 +02:00
|
|
|
StatusSkipped = "skipped"
|
|
|
|
StatusPending = "pending"
|
|
|
|
StatusRunning = "running"
|
|
|
|
StatusSuccess = "success"
|
|
|
|
StatusFailure = "failure"
|
|
|
|
StatusKilled = "killed"
|
|
|
|
StatusError = "error"
|
|
|
|
StatusBlocked = "blocked"
|
|
|
|
StatusDeclined = "declined"
|
2015-09-30 03:21:17 +02:00
|
|
|
)
|
2015-10-27 22:03:37 +02:00
|
|
|
|
|
|
|
const (
|
|
|
|
RepoGit = "git"
|
|
|
|
RepoHg = "hg"
|
|
|
|
RepoFossil = "fossil"
|
|
|
|
RepoPerforce = "perforce"
|
|
|
|
)
|
2017-05-23 00:44:58 +02:00
|
|
|
|
|
|
|
const (
|
|
|
|
VisibilityPublic = "public"
|
|
|
|
VisibilityPrivate = "private"
|
|
|
|
VisibilityInternal = "internal"
|
|
|
|
)
|