diff options
author | Robert Speicher <robert@gitlab.com> | 2016-05-30 22:11:05 +0000 |
---|---|---|
committer | Robert Speicher <robert@gitlab.com> | 2016-05-30 22:11:05 +0000 |
commit | b5decabb00d027e94478c3a0169ef92e14fc6ab9 (patch) | |
tree | a670e25b0858dd211d9e75026f0cecc37af2c040 | |
parent | 38fa9e8f678aebb7622cb7fd91826afc0586d226 (diff) | |
parent | d7e714e4fd5bc45f4d68281b068068a0aa9bb6e1 (diff) | |
download | gitlab-ce-b5decabb00d027e94478c3a0169ef92e14fc6ab9.tar.gz |
Merge branch 'patch-1' into 'master'
Fix typo
Add missing "of" to CI YAML docs.
[ci skip]
See merge request !4331
-rw-r--r-- | doc/ci/yaml/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ci/yaml/README.md b/doc/ci/yaml/README.md index 63866d8c71c..a3481f58c6c 100644 --- a/doc/ci/yaml/README.md +++ b/doc/ci/yaml/README.md @@ -348,7 +348,7 @@ job_name: | allow_failure | no | Allow build to fail. Failed build doesn't contribute to commit status | | when | no | Define when to run build. Can be `on_success`, `on_failure` or `always` | | dependencies | no | Define other builds that a build depends on so that you can pass artifacts between them| -| artifacts | no | Define list build artifacts | +| artifacts | no | Define list of build artifacts | | cache | no | Define list of files that should be cached between subsequent runs | | before_script | no | Override a set of commands that are executed before build | | after_script | no | Override a set of commands that are executed after build | |