We have an open-source project hosted on gitlab.com. We have CI set up and running on a mix of shared runners and private runners that are registered as group runners.
Right now, people who are not members of the project can submit merge requests and CI will run, but will only use the shared runners. This works OK, but our project is a large C++ application and running the pipeline takes a long time, so we would like to move off the shared runners in the future (pipeline runtime is dramatically faster on even a moderately-fast dedicated machine).
Is there any way to allow any user of gitlab.com (not just users who are granted some level of access to the project) to access group runners on a project when a merge request is created? I searched around but could not find any reference to this. If not, does anyone know if there is an existing GitLab feature request that is relevant?
We’d be fine with a solution that requires some kind of approval on a per-user basis, i.e. we could review first-time contributors and click a button that allows the pipeline to run (ideally this would be saved so that the user could then create additional MRs without requiring additional approval). We just don’t want to have to grant all these users a higher level of privilege on the project (we want them to in general maintain Guest access, except to be able to have private runners run their MR pipelines).
Thanks in advance for any advice!