mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-01 22:31:15 +00:00
22 lines
385 B
Go
22 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"
|
||
|
)
|