33 lines
600 B
Go
33 lines
600 B
Go
package model
|
|
|
|
const (
|
|
EventPush = "push"
|
|
EventPull = "pull_request"
|
|
EventTag = "tag"
|
|
EventDeploy = "deployment"
|
|
)
|
|
|
|
const (
|
|
StatusSkipped = "skipped"
|
|
StatusPending = "pending"
|
|
StatusRunning = "running"
|
|
StatusSuccess = "success"
|
|
StatusFailure = "failure"
|
|
StatusKilled = "killed"
|
|
StatusError = "error"
|
|
StatusBlocked = "blocked"
|
|
StatusDeclined = "declined"
|
|
)
|
|
|
|
const (
|
|
RepoGit = "git"
|
|
RepoHg = "hg"
|
|
RepoFossil = "fossil"
|
|
RepoPerforce = "perforce"
|
|
)
|
|
|
|
const (
|
|
VisibilityPublic = "public"
|
|
VisibilityPrivate = "private"
|
|
VisibilityInternal = "internal"
|
|
)
|