From c08a93ac0451eadfda38705ecde77e56bbd183f9 Mon Sep 17 00:00:00 2001 From: tiennm99 Date: Sat, 7 Jun 2025 12:55:32 +0700 Subject: [PATCH] feat: delete gitlab tiennm99 --- .github/workflows/mirror.yml | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml index 798ccf2..1ab88e1 100644 --- a/.github/workflows/mirror.yml +++ b/.github/workflows/mirror.yml @@ -27,7 +27,6 @@ jobs: ssh-keyscan gitlab.com >> ~/.ssh/known_hosts ssh-keyscan bitbucket.org >> ~/.ssh/known_hosts ssh-keyscan codeberg.org >> ~/.ssh/known_hosts - ssh-keyscan git.sr.ht >> ~/.ssh/known_hosts - name: Mirror to GitLab run: | @@ -55,26 +54,6 @@ jobs: # Push all tags git push gitlab --tags --force - - name: Mirror to GitLab (tiennm99) - run: | - # Add GitLab remote for tiennm99 - git remote add gitlab-tiennm99 git@gitlab.com:tiennm99/tiennm99.gitlab.io.git - - # Fetch from GitLab to get information about the default branch - git fetch gitlab-tiennm99 - - # Get list of local branches - LOCAL_BRANCHES=$(git branch | grep -v "origin/" | tr -d '* ' | tr '\n' ' ') - - # Push each local branch individually to GitLab - for branch in $LOCAL_BRANCHES; do - # Push branch to GitLab - git push gitlab-tiennm99 $branch:$branch --force - done - - # Push all tags - git push gitlab-tiennm99 --tags --force - - name: Mirror to Bitbucket run: | # Add Bitbucket remote