Skip to content

Commit

Permalink
Merge pull request #4 from mixxxdj/sync-branches
Browse files Browse the repository at this point in the history
ci(actions): Fix broken `if` expression
  • Loading branch information
Holzhaus authored Oct 14, 2024
2 parents 32c3724 + af284f8 commit 1fd74c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/sync_branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- from_branch: "2.5"
to_branch: "main"
runs-on: ubuntu-latest
if: ${{ github.event_name == "workflow_dispatch" || github.ref_name == matrix.to_branch }}
if: 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]
Expand Down

0 comments on commit 1fd74c2

Please sign in to comment.