From 55336a3ef890c571664c7faa7c717888b4542b90 Mon Sep 17 00:00:00 2001 From: Ralf Handl Date: Sun, 5 Oct 2025 00:26:47 +0200 Subject: [PATCH] Update sync-dev-to-vX.Y-dev.yaml --- .github/workflows/sync-dev-to-vX.Y-dev.yaml | 28 +++++++++++++++------ 1 file changed, 21 insertions(+), 7 deletions(-) diff --git a/.github/workflows/sync-dev-to-vX.Y-dev.yaml b/.github/workflows/sync-dev-to-vX.Y-dev.yaml index 0ace68b375..6702c67de1 100644 --- a/.github/workflows/sync-dev-to-vX.Y-dev.yaml +++ b/.github/workflows/sync-dev-to-vX.Y-dev.yaml @@ -11,6 +11,7 @@ on: push: branches: - dev + workflow_dispatch: {} jobs: sync-branches: @@ -22,36 +23,49 @@ jobs: with: app-id: ${{ secrets.OAI_SPEC_PUBLISHER_APPID }} private-key: ${{ secrets.OAI_SPEC_PUBLISHER_PRIVATE_KEY }} - + - name: Checkout repository uses: actions/checkout@v5 with: fetch-depth: 0 + token: ${{ steps.generate-token.outputs.token }} - name: Create pull requests id: pull_requests shell: bash run: | + git config user.name ${GITHUB_ACTOR} + git config user.email "a@b.c" + DEV_BRANCHES=$(git branch -r --list origin/v?.?-dev) for DEV_BRANCH in $DEV_BRANCHES; do BASE=${DEV_BRANCH:7} - EXISTS=$(gh pr list --base $BASE --head $HEAD \ + SYNC="$BASE-sync-with-$HEAD" + + git checkout -b $SYNC origin/$SYNC || git checkout -b $SYNC origin/$BASE + git merge origin/$HEAD -m "Merge $HEAD into $SYNC" + git checkout origin/$BASE src/* + git checkout origin/$BASE tests/* + git commit -m "Restored src/* and tests/*" || echo "" + git push -u origin $SYNC + + EXISTS=$(gh pr list --base $BASE --head $SYNC \ --json number --jq '.[] | .number') if [ ! -z "$EXISTS" ]; then - echo "PR #$EXISTS already wants to merge $HEAD into $BASE" + echo "PR #$EXISTS already wants to merge $SYNC into $BASE" continue fi - PR=$(gh pr create --base $BASE --head $HEAD \ + PR=$(gh pr create --base $BASE --head $SYNC \ --label "Housekeeping" \ - --title "$BASE: update from $HEAD" \ - --body "Merge \`$HEAD\` into \`$BASE\`.") + --title "$BASE: sync with $HEAD" \ + --body "Merge relevant changes from \`$HEAD\` into \`$BASE\`.") echo "" echo "PR to sync $DEV_BRANCH: $PR" sleep 10 # allow status checks to be triggered gh pr checks $PR --watch --required || continue - gh pr merge $PR --merge --admin + # gh pr merge $PR --merge --admin done env: GH_TOKEN: ${{ steps.generate-token.outputs.token }}