Skip to content
This repository has been archived by the owner on May 8, 2024. It is now read-only.

Commit

Permalink
chore: continue on error in git merge (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnacamura committed Dec 24, 2021
1 parent 0682bcf commit eb1cede
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/merge-upstream-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,19 @@ jobs:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- uses: fish-actions/[email protected]
- run: |
- name: git config
run: |
git config user.name mnacamura
git config user.email [email protected]
- name: git merge
continue-on-error: true
run: |
git remote add upstream https://github.com/PatrickF1/fzf.fish.git
git fetch --unshallow upstream main
git merge --no-ff upstream/main
- uses: fish-actions/[email protected]
- name: run fzf2sk
run: |
git checkout upstream/main -- ':!tools/' ':!.github/'
fish tools/fzf2sk.fish
- uses: stefanzweifel/git-auto-commit-action@v4
Expand Down

0 comments on commit eb1cede

Please sign in to comment.