diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-03-07 14:53:28 +0100 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-03-07 14:53:28 +0100 |
commit | ccfd04f31f3163ba89d380a132bfd0749ef6f3bb (patch) | |
tree | da698ebdecc1e173eddf2f690d7779dca26b7b4b /doc/ci/yaml | |
parent | bec5c3702c268ac668c0c313599ed59aa55e8c51 (diff) | |
download | gitlab-ce-ccfd04f31f3163ba89d380a132bfd0749ef6f3bb.tar.gz |
Deprecate usage of `types` CI/CD configuration entry
Diffstat (limited to 'doc/ci/yaml')
-rw-r--r-- | doc/ci/yaml/README.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/ci/yaml/README.md b/doc/ci/yaml/README.md index b25ccd4376e..49fa8761e5e 100644 --- a/doc/ci/yaml/README.md +++ b/doc/ci/yaml/README.md @@ -70,7 +70,7 @@ There are a few reserved `keywords` that **cannot** be used as job names: | image | no | Use docker image, covered in [Use Docker](../docker/README.md) | | services | no | Use docker services, covered in [Use Docker](../docker/README.md) | | stages | no | Define build stages | -| types | no | Alias for `stages` | +| types | no | Alias for `stages` (deprecated) | | before_script | no | Define commands that run before each job's script | | after_script | no | Define commands that run after each job's script | | variables | no | Define build variables | @@ -130,6 +130,8 @@ There are also two edge cases worth mentioning: ### types +> Deprecated, and will be removed in 10.0. Use [stages](#stages) instead. + Alias for [stages](#stages). ### variables |