Skip to content

Merge pull request #4 from mixxxdj/sync-branches #4

Merge pull request #4 from mixxxdj/sync-branches

Merge pull request #4 from mixxxdj/sync-branches #4

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / Sync Branches

Invalid workflow file

The workflow is not valid. .github/workflows/sync_branches.yml (Line: 19, Col: 9): Unrecognized named-value: 'matrix'. Located at position 64 within expression: github.event_name == 'workflow_dispatch' || github.ref_name == matrix.to_branch
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 }}`.