Fix layout of static lyrics #49
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 remote-work branch | |
on: | |
push: | |
branches: [ "main" ] | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: remote-work | |
- name: Fetch main | |
run: git fetch origin main | |
- name: Merge from main and push | |
run: git merge --ff-only origin/main && git push origin remote-work || echo "Not possible to fast-forward, skipping" |