From 3cc7515acf98cfa732e0860952dad5773bf54c2e Mon Sep 17 00:00:00 2001 From: runephilosof-karnovgroup <101270124+runephilosof-karnovgroup@users.noreply.github.com> Date: Wed, 20 Apr 2022 17:00:26 +0200 Subject: [PATCH] Fix phrasing (#887) * Fix phrasing Pipelines wait for dependencies finish successfully * Update docs/docs/20-usage/25-multi-pipeline.md Co-authored-by: Anbraten --- docs/docs/20-usage/25-multi-pipeline.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/20-usage/25-multi-pipeline.md b/docs/docs/20-usage/25-multi-pipeline.md index d33c7f750..fa1a1a589 100644 --- a/docs/docs/20-usage/25-multi-pipeline.md +++ b/docs/docs/20-usage/25-multi-pipeline.md @@ -87,7 +87,7 @@ Each pipeline will report its own status back to your forge. The pipelines run in parallel on separate agents and share nothing. -Dependencies between pipelines can be set with the `depends_on` element. A pipeline doesn't execute until its dependencies did not complete successfully. +Dependencies between pipelines can be set with the `depends_on` element. A pipeline doesn't execute until all of its dependencies finished successfully. The name for a `depends_on` entry is the filename without the path, leading dots and without the file extension `.yml`. If the project config for example uses `.woodpecker/` as path for ci files with a file named `.woodpecker/.lint.yml` the corresponding `depends_on` entry would be `lint`.