diff options
author | Kamil Trzciński <ayufan@ayufan.eu> | 2019-04-10 11:04:51 +0200 |
---|---|---|
committer | Kamil Trzciński <ayufan@ayufan.eu> | 2019-04-10 11:51:19 +0200 |
commit | 2b9492a292d389d8390a9eca6a80e730ab7b6f1e (patch) | |
tree | 5f494717d67447249f002b56cb7c84c0a4f2eb19 /doc | |
parent | e861af409df4139e2a1c7434b1ca490710c786f1 (diff) | |
download | gitlab-ce-2b9492a292d389d8390a9eca6a80e730ab7b6f1e.tar.gz |
Process at most 4 pipelines during pushlimit-amount-of-created-pipelines
This adds a limitation that we will try to create pipeline
for at most 4 first changes (branches and tags).
This does not affect processing of Pipelines for Merge Requests,
as each updated MR will have associated pipeline created.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ci/yaml/README.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/ci/yaml/README.md b/doc/ci/yaml/README.md index 5e44de13b51..79ab6ee6d62 100644 --- a/doc/ci/yaml/README.md +++ b/doc/ci/yaml/README.md @@ -2697,6 +2697,15 @@ Not to be confused with [`trigger`](#trigger-premium). [Read more in the triggers documentation.](../triggers/README.md) +## Processing Git pushes + +GitLab will create at most 4 branch and tags pipelines when +doing pushing multiple changes in single `git push` invocation. + +This limitation does not affect any of the updated Merge Request pipelines, +all updated Merge Requests will have a pipeline created when using +[pipelines for merge requests](../merge_request_pipelines/index.md). + ## Skipping jobs If your commit message contains `[ci skip]` or `[skip ci]`, using any |