summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzciński <ayufan@ayufan.eu>2019-08-27 10:30:44 +0000
committerKamil Trzciński <ayufan@ayufan.eu>2019-08-27 10:30:44 +0000
commit7efafa601f345e0a9f44639e77f8e5769e48d996 (patch)
treebce70390c5bfb30fd33b61432943883d2b87f991
parent190dba6de93a52487ac86d71a468b88fd88aecaf (diff)
parent529564406378490786f8aafb040d03b60aafb998 (diff)
downloadgitlab-ce-7efafa601f345e0a9f44639e77f8e5769e48d996.tar.gz
Merge branch 'docs-update-needs-example' into 'master'
Update the syntax of DAG example See merge request gitlab-org/gitlab-ce!32137
-rw-r--r--doc/ci/yaml/README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/ci/yaml/README.md b/doc/ci/yaml/README.md
index 5237c61f191..1368764bcf8 100644
--- a/doc/ci/yaml/README.md
+++ b/doc/ci/yaml/README.md
@@ -1820,19 +1820,19 @@ mac:build:
linux:rspec:
stage: test
- needs: [linux:build]
+ needs: ["linux:build"]
linux:rubocop:
stage: test
- needs: [linux:build]
+ needs: ["linux:build"]
mac:rspec:
stage: test
- needs: [mac:build]
+ needs: ["mac:build"]
mac:rubocop:
stage: test
- needs: [mac:build]
+ needs: ["mac:build"]
production:
stage: deploy