Merge pull request #4 from mixxxdj/sync-branches #4
This file contains 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 Branches | ||
on: | ||
push: | ||
branches: | ||
- "2.4" | ||
- "2.5" | ||
workflow_dispatch: | ||
jobs: | ||
sync-branches: | ||
strategy: | ||
matrix: | ||
include: | ||
- from_branch: "2.4" | ||
to_branch: "2.5" | ||
- from_branch: "2.5" | ||
to_branch: "main" | ||
runs-on: ubuntu-latest | ||
if: github.event_name == 'workflow_dispatch' || github.ref_name == matrix.to_branch | ||
Check failure on line 19 in .github/workflows/sync_branches.yml GitHub Actions / Sync BranchesInvalid workflow file
|
||
steps: | ||
- name: Merge ${{ matrix.from_branch }} into ${{ matrix.to_branch }} | ||
uses: tretuna/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
FROM_BRANCH: ${{ matrix.from_branch }} | ||
TO_BRANCH: ${{ matrix.from_branch }} | ||
CONTENT_COMPARISON: true # Prevent empty PRs | ||
PULL_REQUEST_TITLE: Merge changes from `${{ matrix.from_branch }}` into `${{ matrix.to_branch }}` | ||
PULL_REQUEST_BODY: | | ||
New content has landed in the `${{ matrix.from_branch }}` branch, so let's merge the changes into `${{ matrix.to_branch }}`. |