forked from soniacq/HuBar
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6070a0e
commit 1311ff1
Showing
1 changed file
with
25 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,34 @@ | ||
name: Push to GitLab | ||
name: Mirror to GitLab | ||
|
||
on: | ||
push: | ||
branches: | ||
- gitlab | ||
- '*' | ||
|
||
jobs: | ||
push_to_gitlab: | ||
mirror_to_gitlab: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 # Fetch all history to ensure all branches are included | ||
|
||
- name: Fetch all branches and tags | ||
run: | | ||
git fetch --all | ||
git fetch --tags | ||
- name: Set up Git | ||
run: | | ||
git config --global user.name 'github-actions' | ||
git config --global user.email '[email protected]' | ||
git config --global http.postBuffer 10000000 # 10 MB | ||
- name: Add GitLab remote | ||
env: | ||
GITLAB_URL: ${{ secrets.GITLAB_URL }} | ||
GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }} | ||
run: | | ||
git remote add gitlab https://oauth2:${{ secrets.GITLAB_TOKEN }}@${{ secrets.GITLAB_URL }} | ||
- name: Push all branches to GitLab | ||
env: | ||
GITLAB_URL: ${{ secrets.GITLAB_URL }} | ||
GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }} | ||
run: | | ||
# Push all branches | ||
for branch in $(git for-each-ref --format '%(refname:short)' refs/heads/); do | ||
git push gitlab $branch:$branch | ||
done | ||
- name: Push all tags to GitLab | ||
env: | ||
GITLAB_URL: ${{ secrets.GITLAB_URL }} | ||
GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }} | ||
run: | | ||
git push --tags gitlab | ||
- name: Checkout Repository | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ github.event.ref }} | ||
|
||
- name: Set up Git | ||
run: | | ||
git config --global user.name 'GitHub Actions' | ||
git config --global user.email '[email protected]' | ||
- name: Add GitLab remote | ||
run: | | ||
git remote add gitlab https://oauth2:${{ secrets.GITLAB_TOKEN }}@${{ secrets.GITLAB_URL }} | ||
- name: Fetch all branches from GitLab | ||
run: | | ||
git fetch gitlab --prune | ||
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done | ||
- name: Push all branches to GitLab | ||
run: | | ||
git push gitlab --all |