woodpecker/model/const.go

34 lines
600 B
Go
Raw Normal View History

2015-09-30 01:21:17 +00:00
package model
const (
EventPush = "push"
EventPull = "pull_request"
EventTag = "tag"
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
)
const (
RepoGit = "git"
RepoHg = "hg"
RepoFossil = "fossil"
RepoPerforce = "perforce"
)
2017-05-22 22:44:58 +00:00
const (
VisibilityPublic = "public"
VisibilityPrivate = "private"
VisibilityInternal = "internal"
)