mirror of
https://github.com/igareck/vpn-configs-for-russia.git
synced 2026-07-04 16:33:06 +00:00
Создание зеркала на Codeberg.org Create a mirror on Codeberg.org Updated GitHub Actions workflow to disable cancel-in-progress and added retry logic for Codeberg push. "Stale server-side Git lock" issue is fixed by Codeberg support.
53 lines
1.3 KiB
YAML
53 lines
1.3 KiB
YAML
name: Mirror to Codeberg
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "17 * * * *"
|
|
|
|
concurrency:
|
|
group: mirror-to-codeberg
|
|
cancel-in-progress: false
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
mirror:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 20
|
|
|
|
steps:
|
|
- name: Checkout GitHub repository
|
|
uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Push main branch to Codeberg
|
|
env:
|
|
CODEBERG_TOKEN: ${{ secrets.CODEBERG_MIRROR_TOKEN }}
|
|
run: |
|
|
set -euo pipefail
|
|
|
|
git config user.name "github-actions"
|
|
git config user.email "github-actions@github.com"
|
|
|
|
git remote remove codeberg 2>/dev/null || true
|
|
git remote add codeberg "https://igareck:${CODEBERG_TOKEN}@codeberg.org/igareck/vpn-configs-for-russia.git"
|
|
|
|
for attempt in 1 2 3 4 5; do
|
|
echo "Codeberg push attempt $attempt/5"
|
|
|
|
if git push codeberg HEAD:main --force; then
|
|
echo "Codeberg push successful"
|
|
exit 0
|
|
fi
|
|
|
|
sleep_time=$((attempt * 60))
|
|
echo "Codeberg push failed. Sleeping ${sleep_time}s before retry..."
|
|
sleep "$sleep_time"
|
|
done
|
|
|
|
echo "Codeberg push failed after all retries"
|
|
exit 1
|