mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-29 21:31:02 +00:00
21 lines
385 B
Go
21 lines
385 B
Go
package drone
|
|
|
|
// Event values.
|
|
const (
|
|
EventPush = "push"
|
|
EventPull = "pull_request"
|
|
EventTag = "tag"
|
|
EventDeploy = "deployment"
|
|
)
|
|
|
|
// Status values.
|
|
const (
|
|
StatusBlocked = "blocked"
|
|
StatusSkipped = "skipped"
|
|
StatusPending = "pending"
|
|
StatusRunning = "running"
|
|
StatusSuccess = "success"
|
|
StatusFailure = "failure"
|
|
StatusKilled = "killed"
|
|
StatusError = "error"
|
|
)
|