mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-05 00:19:47 +00:00
25 lines
429 B
Go
25 lines
429 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"
|
|
)
|
|
|
|
const (
|
|
RepoGit = "git"
|
|
RepoHg = "hg"
|
|
RepoFossil = "fossil"
|
|
RepoPerforce = "perforce"
|
|
)
|