Add godot linter to harmonitze toplevel comments (#3650)

This commit is contained in:
Robert Kaussow
2024-05-13 22:58:21 +02:00
committed by GitHub
parent 83eba294c7
commit 89e100cfd1
144 changed files with 302 additions and 302 deletions

View File

@@ -14,7 +14,7 @@
package constant
// PrivilegedPlugins can be changed by 'WOODPECKER_ESCALATE' at runtime
// PrivilegedPlugins can be changed by 'WOODPECKER_ESCALATE' at runtime.
var PrivilegedPlugins = []string{
"plugins/docker",
"plugins/gcr",
@@ -24,7 +24,7 @@ var PrivilegedPlugins = []string{
}
// DefaultConfigOrder represent the priority in witch woodpecker search for a pipeline config by default
// folders are indicated by supplying a trailing /
// folders are indicated by supplying a trailing slash.
var DefaultConfigOrder = [...]string{
".woodpecker/",
".woodpecker.yaml",
@@ -32,7 +32,7 @@ var DefaultConfigOrder = [...]string{
}
const (
// DefaultCloneImage can be changed by 'WOODPECKER_DEFAULT_CLONE_IMAGE' at runtime
// DefaultCloneImage can be changed by 'WOODPECKER_DEFAULT_CLONE_IMAGE' at runtime.
DefaultCloneImage = "docker.io/woodpeckerci/plugin-git:2.4.0"
)