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/yaml
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2015-10-16 00:56:42 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2015-10-16 00:56:42 +0300
commit374ea21f32f2977533be2c9b124867bf7c72407c (patch)
tree736dbbc36429b2159934ac3fa4422ea2383dbf9c /doc/ci/yaml
parent9419046196dc1a09716d5b2bbc424b4f89d696ae (diff)
Backticks around when types
Diffstat (limited to 'doc/ci/yaml')
-rw-r--r--doc/ci/yaml/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ci/yaml/README.md b/doc/ci/yaml/README.md
index 8507389f1ce..d37e616bbac 100644
--- a/doc/ci/yaml/README.md
+++ b/doc/ci/yaml/README.md
@@ -140,7 +140,7 @@ job_name:
| except | optional | Defines a list of git refs for which build is not created |
| tags | optional | Defines a list of tags which are used to select runner |
| allow_failure | optional | Allow build to fail. Failed build doesn't contribute to commit status |
-| when | optional | Define when to run build. Can be on_success, on_failure or always |
+| when | optional | Define when to run build. Can be `on_success`, `on_failure` or `always` |
### script
`script` is a shell script which is executed by runner. The shell script is prepended with `before_script`.