1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2026-06-03 16:35:37 +02:00
Files
woodpecker/pipeline/frontend/metadata/const.go
T
6543 66e221b4b1 Move skip pipeline by commit message into pipeline/frontend package (#6437)
and add some custom types for events and failure in metadata package.

no logic change at all.
2026-04-15 09:50:03 +02:00

50 lines
1.3 KiB
Go

// Copyright 2022 Woodpecker Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package metadata
type Event string
// Event types corresponding to forge hooks.
const (
EventPush Event = "push"
EventPull Event = "pull_request"
EventPullClosed Event = "pull_request_closed"
EventPullMetadata Event = "pull_request_metadata"
EventTag Event = "tag"
EventRelease Event = "release"
EventDeploy Event = "deployment"
EventCron Event = "cron"
EventManual Event = "manual"
)
func (event Event) IsPull() bool {
switch event {
case EventPull,
EventPullClosed,
EventPullMetadata:
return true
}
return false
}
type Failure string
// Different ways to handle failure states.
const (
FailureIgnore Failure = "ignore"
FailureFail Failure = "fail"
FailureCancel Failure = "cancel"
)