Skip to content

Commit

Permalink
Update UpdateFork.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisisth committed Sep 13, 2024
1 parent 7826300 commit 0e07d0c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/UpdateFork.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@ jobs:
- name: Fetch Upstream
run: git fetch upstream

- name: List Upstream Branches
run: git branch -r

- name: Merge Upstream
run: git merge upstream/main
run: git merge upstream/main || echo "Merge conflicts detected. Please resolve them manually."

- name: Push Changes
run: git push origin main
run: git push origin main || echo "Push failed. Please check your token and permissions."

0 comments on commit 0e07d0c

Please sign in to comment.