Example:
I would like to use environment variable from external repo (`$CI_PROJECT_PATH) and use it in my .gitlab-ci.yml file in INCLUDE block
include:
- project: ‘$VARIABLE_example’
ref: master
file: ‘var1.yml’
even local does not work:
variables:
PR1: 'path/infrastructure/infra/test_trigger'
stages:
- test
- test2
include:
- project: $PR
ref: master
file: 'var1.yml'
but the syntax is incorrect: "Project $PR
not found "