From 2ed96e6fcfc96ca1045155fc52a12f5f7b070417 Mon Sep 17 00:00:00 2001 From: Ivan Gabaldon Date: Tue, 22 Sep 2026 18:16:59 +0200 Subject: [PATCH] [feat] ci: oneway sync to CB (#6770) --- .github/workflows/sync.yml | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/sync.yml diff --git a/.github/workflows/sync.yml b/.github/workflows/sync.yml new file mode 100644 index 000000000..6ef5799ee --- /dev/null +++ b/.github/workflows/sync.yml @@ -0,0 +1,38 @@ +--- +# yamllint disable rule:line-length +name: Sync + +# yamllint disable-line rule:truthy +on: + workflow_dispatch: + push: + branches: + - master + +concurrency: + group: ${{ github.workflow }} + cancel-in-progress: false + +jobs: + codeberg: + if: github.repository_owner == 'searxng' + name: Codeberg + runs-on: ubuntu-26.04-arm + steps: + - name: Sync + env: + ORIGIN: "github.com/searxng/searxng" + DESTINATION: "codeberg.org/searxng/searxng" + DESTINATION_USER: "${{ secrets.CODEBERG_USER }}" + DESTINATION_TOKEN: "${{ secrets.CODEBERG_TOKEN }}" + run: | + set -eu + + git init --quiet --bare .sync + cd .sync + + git fetch --no-tags "https://${ORIGIN}.git" \ + '+refs/heads/master:refs/heads/master' + + git push --force "https://${DESTINATION_USER}:${DESTINATION_TOKEN}@${DESTINATION}.git" \ + 'refs/heads/master:refs/heads/master'