There is a group that hosts 00_Parent_Project
: the source project containing e.g. .gitlab-ci.yml
template:
Group
[project] 00_Parent_Project
[repo] .gitlab-ci.yml
How, using GitLab API, can I clone the source project, so that the target projects already contain repository with .gitlab-ci.yml
?:
Group
[project] 00_Parent_Project
[repo] .gitlab-ci.yml
[project] 01_Child_Project
[repo] .gitlab-ci.yml
[project] 02_Child_Project
[repo] .gitlab-ci.yml
I'm not sure if sharing the CI template between projects should be taken into consideration as the target projects will be created by a request coming from backend server.
What would be the most efficient way to achieve this?