summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axil@gitlab.com>2017-08-25 18:15:31 +0000
committerAchilleas Pipinellis <axil@gitlab.com>2017-08-25 18:15:31 +0000
commit1bfba534a9c00ef739c5f77bd1f99e842ce60fa6 (patch)
tree71f49aa4e53583bfa1c29a49b694ec89c5681825
parent7fd743ce8760fc4d63a89627225de0b5ea5a5ad2 (diff)
parentb0d7918a6773fb7f1696f8077ba812bea23c0983 (diff)
downloadgitlab-ce-1bfba534a9c00ef739c5f77bd1f99e842ce60fa6.tar.gz
Merge branch 'docs-clarify-dependencies' into 'master'
Improve documentation for 'dependencies' keyword Closes #36857 See merge request !13758
-rw-r--r--doc/ci/yaml/README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/ci/yaml/README.md b/doc/ci/yaml/README.md
index 1869782fe6e..abf4ec7dbf8 100644
--- a/doc/ci/yaml/README.md
+++ b/doc/ci/yaml/README.md
@@ -1065,6 +1065,8 @@ a list of all previous jobs from which the artifacts should be downloaded.
You can only define jobs from stages that are executed before the current one.
An error will be shown if you define jobs from the current stage or next ones.
Defining an empty array will skip downloading any artifacts for that job.
+The status of the previous job is not considered when using `dependencies`, so
+if it failed or it is a manual job that was not run, no error occurs.
---