Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Sync fork with upstream before creating PR branch
- Fetch latest upstream/master before making changes
- Ensures PR only shows requirements.txt diff, not stale commits
- Does not modify fork's master branch (only pushes automation branch)
  • Loading branch information
christian-byrne committed Nov 30, 2025
commit f551bfc6619906eca01436712e7edcbf22c98bb9
9 changes: 9 additions & 0 deletions .github/workflows/release-weekly-comfyui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,15 @@ jobs:
token: ${{ secrets.PR_GH_TOKEN }}
path: comfyui

- name: Sync with upstream
working-directory: comfyui
run: |
# Fetch latest upstream to base our branch on fresh code
# Note: This only affects the local checkout, NOT the fork's master branch
# We only push the automation branch, leaving the fork's master untouched
git fetch https://github.com/comfyanonymous/ComfyUI.git master
git checkout FETCH_HEAD

- name: Update requirements.txt
working-directory: comfyui
run: |
Expand Down