mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
[CI] push forgejo branches to the specified destination
This commit is contained in:
parent
f9da193055
commit
22abd100cb
1 changed files with 25 additions and 0 deletions
25
.forgejo/workflows/mirror.yml
Normal file
25
.forgejo/workflows/mirror.yml
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
name: mirror
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'forgejo'
|
||||||
|
- 'v*/forgejo'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
mirror:
|
||||||
|
if: ${{ secrets.MIRROR_TOKEN != '' }}
|
||||||
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: 'docker.io/node:20-bookworm'
|
||||||
|
steps:
|
||||||
|
- name: git push {v*/,}forgejo
|
||||||
|
run: |
|
||||||
|
git init --bare .
|
||||||
|
git remote add origin ${{ env.GITHUB_SERVER_URL }}/${{ env.GITHUB_REPOSITORY }}
|
||||||
|
git fetch origin refs/heads/forgejo:refs/mirror/forgejo
|
||||||
|
git ls-remote origin refs/heads/v*/forgejo | while read sha full_ref ; do
|
||||||
|
ref=${full_ref#refs/heads/}
|
||||||
|
git fetch origin $full_ref:refs/mirror/$ref
|
||||||
|
done
|
||||||
|
git push --force https://any:${{ secrets.MIRROR_TOKEN }}@${{ vars.MIRROR_DESTINATION }} refs/mirror/*:refs/heads/*
|
Loading…
Reference in a new issue