summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzegorz@gitlab.com>2018-11-08 13:24:37 +0000
committerSteve Azzopardi <steveazz@outlook.com>2018-11-09 08:58:11 +0100
commit320db975b71a5da023335a5969ca378aef159367 (patch)
tree2f952799f9cfa2edc005cf4dcc4a25f5a0a4d0f4 /doc
parente5b5d4a897ae7b4f5875fa3493c465f6d606cd79 (diff)
downloadgitlab-ce-320db975b71a5da023335a5969ca378aef159367.tar.gz
Merge branch 'limit-parallel-to-100' into 'master'
Limit parallel to 50 Closes #53711 See merge request gitlab-org/gitlab-ce!22907
Diffstat (limited to 'doc')
-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 c827faace33..5cca9d86560 100644
--- a/doc/ci/yaml/README.md
+++ b/doc/ci/yaml/README.md
@@ -1510,7 +1510,7 @@ Possible values for `when` are:
> [Introduced](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/22631) in GitLab 11.5.
`parallel` allows you to configure how many instances of a job to run in
-parallel. This value has to be greater than or equal to two (2).
+parallel. This value has to be greater than or equal to two (2) and less or equal than 50.
This creates N instances of the same job that run in parallel. They're named
sequentially from `job_name 1/N` to `job_name N/N`.