Merge pull request #5042 from RSSNext/release/mobile/0.5.6 #90
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 🔄 Sync Release Branches To Dev | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - mobile-main | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| sync-to-dev: | |
| runs-on: ubuntu-latest | |
| if: | | |
| (github.ref == 'refs/heads/main' && contains(github.event.head_commit.message || '', 'release(desktop):')) || | |
| (github.ref == 'refs/heads/mobile-main' && contains(github.event.head_commit.message || '', 'release(mobile):')) | |
| steps: | |
| - name: Check whether source branch is ahead of dev | |
| id: compare | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| source_branch="${GITHUB_REF_NAME}" | |
| compare_ref="$(printf '%s' "dev...${source_branch}" | jq -sRr @uri)" | |
| ahead_by="$(gh api "repos/${GITHUB_REPOSITORY}/compare/${compare_ref}" --jq '.ahead_by')" | |
| echo "source_branch=${source_branch}" >> "$GITHUB_OUTPUT" | |
| echo "ahead_by=${ahead_by}" >> "$GITHUB_OUTPUT" | |
| if [ "$ahead_by" -eq 0 ]; then | |
| echo "No commits to sync from ${source_branch} into dev." | |
| else | |
| echo "${source_branch} is ${ahead_by} commit(s) ahead of dev." | |
| fi | |
| - name: Create or update sync pull request | |
| if: steps.compare.outputs.ahead_by != '0' | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| source_branch="${{ steps.compare.outputs.source_branch }}" | |
| title="chore(sync): merge ${source_branch} into dev" | |
| body=$(cat <<EOF | |
| This pull request was created automatically after a release branch update. | |
| - Source branch: \`${source_branch}\` | |
| - Target branch: \`dev\` | |
| EOF | |
| ) | |
| pr_number="$(gh pr list --repo "${GITHUB_REPOSITORY}" --base dev --head "${source_branch}" --state open --json number --jq '.[0].number')" | |
| if [ -z "${pr_number}" ]; then | |
| pr_url="$(gh pr create --repo "${GITHUB_REPOSITORY}" --base dev --head "${source_branch}" --title "${title}" --body "${body}")" | |
| pr_number="${pr_url##*/}" | |
| echo "Created sync PR: ${pr_url}" | |
| else | |
| gh pr edit --repo "${GITHUB_REPOSITORY}" "${pr_number}" --title "${title}" --body "${body}" | |
| echo "Updated existing sync PR: #${pr_number}" | |
| fi | |
| if gh pr merge --repo "${GITHUB_REPOSITORY}" "${pr_number}" --auto --merge; then | |
| echo "Enabled auto-merge for sync PR #${pr_number}" | |
| else | |
| echo "Could not enable auto-merge for sync PR #${pr_number}. Merge it manually after required checks pass." | |
| fi |