Fixed incorrect include key
This commit is contained in:
parent
8721be863f
commit
be485424e0
1 changed files with 3 additions and 3 deletions
|
@ -1858,7 +1858,7 @@ using a combination of different methods.
|
||||||
In this example, `.gitlab-ci.yml` includes local the file `/.gitlab-ci/another-config.yml`:
|
In this example, `.gitlab-ci.yml` includes local the file `/.gitlab-ci/another-config.yml`:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
includes:
|
include:
|
||||||
- local: /.gitlab-ci/another-config.yml
|
- local: /.gitlab-ci/another-config.yml
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -1866,7 +1866,7 @@ The `/.gitlab-ci/another-config.yml` includes a template and the `/templates/doc
|
||||||
from another project:
|
from another project:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
includes:
|
include:
|
||||||
- template: Bash.gitlab-ci.yml
|
- template: Bash.gitlab-ci.yml
|
||||||
- project: /group/my-project
|
- project: /group/my-project
|
||||||
file: /templates/docker-workflow.yml
|
file: /templates/docker-workflow.yml
|
||||||
|
@ -1876,7 +1876,7 @@ The `/templates/docker-workflow.yml` present in `/group/my-project` includes two
|
||||||
of the `/group/my-project`:
|
of the `/group/my-project`:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
includes:
|
include:
|
||||||
- local: : /templates/docker-build.yml
|
- local: : /templates/docker-build.yml
|
||||||
- local: : /templates/docker-testing.yml
|
- local: : /templates/docker-testing.yml
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue