需要使用特定的yml文件来触发下游项目。
所以,我在上游项目中有以下几点:
trigger-integration-test:
stage: test
trigger:
project: platform/api-testing但它在根目录中使用.gitlab-ci.yml,但我需要使用/path/ to /different/.diffferent-gitlab-ci.yml
发布于 2021-05-12 18:51:41
您可以在此处使用parent-child pipeline:
trigger-integration-test:
stage: test
trigger:
include:
- project: 'platform/api-testing'
file: '/path/to/different/.diffferent-gitlab-ci.yml'https://stackoverflow.com/questions/67501452
复制相似问题