Skip to content

Commit a59ce4b

Browse files
authored
Merge pull request #6 from mixxxdj/sync-branches
ci(actions): Fix wrong if condition
2 parents 8d2a94b + 0bcd4fe commit a59ce4b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/sync_branches.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Merge ${{ matrix.from_branch }} into ${{ matrix.to_branch }}
21-
if: github.event_name == 'workflow_dispatch' || github.ref_name == matrix.to_branch
21+
if: github.event_name == 'workflow_dispatch' || github.ref_name == matrix.from_branch
2222
uses: tretuna/sync-branches@1.4.0
2323
with:
2424
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 commit comments

Comments
 (0)