on: workflow_dispatch: jobs: mirror: runs-on: x86_64 container: image: 'docker.io/node:20-bookworm' steps: - name: git mirror branches {v*/,}main & tags run: | git init --bare . git remote add origin https://github.com/zotero/zotero.git git fetch origin refs/heads/main:refs/mirror/main git ls-remote origin refs/heads/v*/main | while read sha full_ref ; do ref=${full_ref#refs/heads/} git fetch origin $full_ref:refs/mirror/$ref tag=${ref%/main} git fetch origin refs/tags/${tag}*:refs/mirror-tags/${tag}* done if test "${{ vars.TEST }}" != true ; then token=${{ secrets.CODE_FORGEJO_TOKEN }} destination=${{ vars.DESTINATION }} owner=${{ vars.OWNER }} else token=${{ secrets.TEST_FORGEJO_TOKEN }} destination=${{ vars.TEST_DESTINATION }} owner=${{ vars.TEST_OWNER }} fi git push --force https://any:$token@$destination/$owner/zotero refs/mirror/*:refs/heads/* refs/mirror-tags/*:refs/tags/* --tags