Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc/ci
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2024-01-11 18:09:58 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2024-01-11 18:09:58 +0300
commitd8877c12347443fa02e0ba53ad8d5cd318f6fa28 (patch)
treebe066b259837e82a5ca51b3f8feb3285594d8f66 /doc/ci
parent97feef1f73fd0a3237d1a2aef4e977e7e27ecace (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/ci')
-rw-r--r--doc/ci/yaml/index.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ci/yaml/index.md b/doc/ci/yaml/index.md
index a2490767350..447e0bd93da 100644
--- a/doc/ci/yaml/index.md
+++ b/doc/ci/yaml/index.md
@@ -807,12 +807,12 @@ scan-website:
Inputs are mandatory when included, unless you set a default value with `spec:inputs:default`.
-Use `default: null` to have no default value.
+Use `default: ''` to have no default value.
**Keyword type**: Header keyword. `specs` must be declared at the top of the configuration file,
in a header section.
-**Possible inputs**: A string representing the default value, or `null`.
+**Possible inputs**: A string representing the default value, or `''`.
**Example of `spec:inputs:default`**:
@@ -823,7 +823,7 @@ spec:
user:
default: 'test-user'
flags:
- default: null
+ default: ''
---
# The pipeline configuration would follow...