My gitlab-ci.yaml:
stages:
  - linter
  - build
  - deploy
include:
  - project: 'infrastructure/ansible-repository'
    ref: '1.0.0'
    file: '/project-pipeline.yml'
In the project-pipeline.yml there's a before_script: where I need to access a directory from the infrastructure/ansible-repository. At the moment I git clone the whole repository.
My Question: is there an include for a directory or something like that?
 
    