summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Tanayno <atanayno@gitlab.com>2019-08-23 05:02:37 +0000
committerAlexander Tanayno <atanayno@gitlab.com>2019-08-23 05:02:37 +0000
commit529564406378490786f8aafb040d03b60aafb998 (patch)
treea4a79dfabac92354399553405782f00a412933c3
parente12f7fe062574b0ad3e271b149928252a99119f5 (diff)
downloadgitlab-ce-docs-update-needs-example.tar.gz
Update syntax of needs exampledocs-update-needs-example
-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 89a61b2a9e3..73960cb176c 100644
--- a/doc/ci/yaml/README.md
+++ b/doc/ci/yaml/README.md
@@ -1700,19 +1700,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