Update sync-from-gitea.yml

This commit is contained in:
Trance-0
2025-11-18 20:55:10 -06:00
parent 978430adca
commit 8e73cf3205

View File

@@ -1,4 +1,4 @@
name: Sync from Gitea (master→main, keep workflow) name: Sync from Gitea (main→main, keep workflow)
on: on:
schedule: schedule:
@@ -31,7 +31,7 @@ jobs:
git remote add gitea "$AUTH_URL" git remote add gitea "$AUTH_URL"
git fetch gitea --prune git fetch gitea --prune
- name: Update main from gitea/master, keep workflow, and force-push - name: Update main from gitea/main, keep workflow, and force-push
env: env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }} GH_REPO: ${{ github.repository }}
@@ -51,11 +51,11 @@ jobs:
cp "$WF_PATH" /tmp/gh-workflows/ cp "$WF_PATH" /tmp/gh-workflows/
fi fi
# Reset local 'main' to exactly match gitea/master # Reset local 'main' to exactly match gitea/main
if git show-ref --verify --quiet refs/remotes/gitea/master; then if git show-ref --verify --quiet refs/remotes/gitea/main; then
git checkout -B main gitea/master git checkout -B main gitea/main
else else
echo "No gitea/master found, nothing to sync." echo "No gitea/main found, nothing to sync."
exit 0 exit 0
fi fi