I have a gitlab instance setup on my server and I would like to mirror a github project in it publicly but run tests on my servers. How can I achieve this?
To specific tests on my runners I need to create a .gitlab-ci.yml file but since I am mirroring I cannot do so. Any suggestions?
I don’t have a solution but I do use a workaround. I have a clone of the project in github. Then I do CI/CD for that fork in gitlab. Since the fork is mine, I can add a .gitlab-ci.yml. On a regular basis I merge origin to my form --ff-only which works because they never had a gitlab-ci.yml in the first place.