2022-04-06 13:30:49 +00:00
|
|
|
// 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 constant
|
|
|
|
|
2024-09-20 07:40:48 +00:00
|
|
|
import "time"
|
|
|
|
|
2022-11-09 07:12:17 +00:00
|
|
|
// DefaultConfigOrder represent the priority in witch woodpecker search for a pipeline config by default
|
2024-05-13 20:58:21 +00:00
|
|
|
// folders are indicated by supplying a trailing slash.
|
2022-11-03 18:12:40 +00:00
|
|
|
var DefaultConfigOrder = [...]string{
|
|
|
|
".woodpecker/",
|
|
|
|
".woodpecker.yaml",
|
2023-04-29 08:12:36 +00:00
|
|
|
".woodpecker.yml",
|
2022-11-03 18:12:40 +00:00
|
|
|
}
|
|
|
|
|
2022-04-06 13:30:49 +00:00
|
|
|
const (
|
2024-09-01 18:41:10 +00:00
|
|
|
// DefaultClonePlugin can be changed by 'WOODPECKER_DEFAULT_CLONE_PLUGIN' at runtime.
|
2024-07-13 20:43:13 +00:00
|
|
|
// renovate: datasource=docker depName=woodpeckerci/plugin-git
|
2024-09-22 19:02:36 +00:00
|
|
|
DefaultClonePlugin = "docker.io/woodpeckerci/plugin-git:2.6.0"
|
2022-04-06 13:30:49 +00:00
|
|
|
)
|
2023-03-20 20:17:49 +00:00
|
|
|
|
2024-09-01 18:41:10 +00:00
|
|
|
// TrustedClonePlugins can be changed by 'WOODPECKER_PLUGINS_TRUSTED_CLONE' at runtime.
|
|
|
|
var TrustedClonePlugins = []string{
|
|
|
|
DefaultClonePlugin,
|
|
|
|
"docker.io/woodpeckerci/plugin-git",
|
2023-08-16 13:17:43 +00:00
|
|
|
"quay.io/woodpeckerci/plugin-git",
|
2023-03-20 20:17:49 +00:00
|
|
|
}
|
2024-09-20 07:40:48 +00:00
|
|
|
|
|
|
|
// TaskTimeout is the time till a running task is counted as dead.
|
|
|
|
var TaskTimeout = time.Minute
|