Skip to content
Snippets Groups Projects
Commit be485424 authored by Laurens Stötzel's avatar Laurens Stötzel Committed by Evan Read
Browse files

Fixed incorrect include key

parent 8721be86
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -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`:
 
```yaml
includes:
include:
- local: /.gitlab-ci/another-config.yml
```
 
Loading
Loading
@@ -1866,7 +1866,7 @@ The `/.gitlab-ci/another-config.yml` includes a template and the `/templates/doc
from another project:
 
```yaml
includes:
include:
- template: Bash.gitlab-ci.yml
- project: /group/my-project
file: /templates/docker-workflow.yml
Loading
Loading
@@ -1876,7 +1876,7 @@ The `/templates/docker-workflow.yml` present in `/group/my-project` includes two
of the `/group/my-project`:
 
```yaml
includes:
include:
- local: : /templates/docker-build.yml
- local: : /templates/docker-testing.yml
```
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment