We have a temporary solution to to push new updates to our git repository from SVN via a local machine but this is manually done and we also tried it using git-svn. The manual process is as follows:
- Create a local directory for SVN development repo
- clone existing SVN project repo into local directory
- Initialize local directory using git
- push this project into our Gitlab
- every time there is a new update from SVN we just update our local copy with SVN
- Using git we push this updates to Gitlab manually
However we'd like to automate this process if its possible using gitlab mirroring but we only see examples where it mirrors a git and another git repo.
Another way is probably using Gitlab jobs/runner but we are not sure if it can do what we want.
Any suggestions on how this can be achieved?