1
0
mirror of https://github.com/xorcare/testing-go-code-with-postgres.git synced 2025-06-30 23:23:40 +02:00

Remove GitHub Workflow for mirroring to Gitlab

There was an advent recently, the Pipelines in Gitlab took a very long
time to execute, and used up my entire quota of free runners. At first
I thought of just adding timeouts, but then I thought there might be
better approaches to integrating with Gitlab.

So I'm removing the Gitlab integration for now, maybe in the future
when quotas are restored I'll set up a more convenient and thoughtful
integration again.
This commit is contained in:
Vasiliy Vasilyuk
2024-09-14 14:54:58 +03:00
parent 1023c345c2
commit 1e275839f4
2 changed files with 0 additions and 25 deletions

View File

@ -1,23 +0,0 @@
name: GitLab
on:
push:
workflow_dispatch:
jobs:
mirror:
name: Mirroring to GitLab
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Mirror repository to Gitlab
run: |
set -e -x
ssh-keyscan -H "${{ vars.GITLAB_HOSTNAME }}" | tee -a ~/.ssh/known_hosts
git remote add gitlab "${{ vars.GITLAB_REPO_SSH }}"
git push --force gitlab "$GITHUB_REF_NAME"